String matching is the problem of finding occurrences of one string (“pattern”, “needle”) in another (“text”, “haystack”).
0
votes
2answers
23 views
identifying Identical array key matches and specifying output for different matching sets
I have created a simple function that returns a value depending on which Keys have matching values with the exception that if the key is empty or null then this does not count. My code is below.
...
0
votes
0answers
10 views
MySQL Loop Procedure using two tables
I'm having trouble creating the right procedure loop through my master table on keyword_phrase and text search for a list of negative words held in the negative table.
Each 'keyword_phrase' needs to ...
1
vote
2answers
45 views
How to get the 1st match between 2 string arrays
I have 2 string arrays. The one is the base and the other is changing.
string[] baseArray = { "Gold", "Silver", "Bronze" };
string[] readArray = { "Bronze", "Silver", "Gold" };
// After comparing ...
0
votes
1answer
72 views
Ignoring ' (apostrophe) from RegEx
I've a RegEx and would like to ignore any ' (apostrophe) within the string. RegEx discussion can be found within the discussion String manipulation: How to replace a string with a specific pattern
...
1
vote
3answers
64 views
Obtaining array element differences in Java
Say I have two string arrays:
String[] first = new String[]{"12","23","44","67"};
String[] second= new String[]{"12","22","46","67"};
I searched for a function like PHP's array_diff which will give ...
0
votes
1answer
17 views
Benefits of removing vowels prior to string encoding
I'm going through C++ code that encodes address data for match-merging. I have very limited expertise in C++, but I'm pretty sure one step of the process is to drop vowels, and encode consonants with ...
1
vote
3answers
58 views
How do I mimic `ls foo*bar` in R?
Completely stumped, though it seems like a simple question that will be voted down very shortly as a duplicate, but I couldn't find the right "pattern" to search for the answer.
I am looking for ...
4
votes
2answers
105 views
String manipulation: How to replace a string with a specific pattern
I've a question here related to string manipulation based on a specific pattern. I am trying to replace a specific pattern with a pre-defined pattern using C#
For eg:
Scenario # 1
Input: ...
1
vote
3answers
88 views
How to check a string for words in sequence
So my code looks like this
string order = "Im sending you big apples x100";
string[] fruits = { "apples", "big apples", "oranges" };
string[] vegetables = { "tomatoes", "carrots", "cucumber" };
...
0
votes
0answers
31 views
Java Hibernate MYSQL MatchMode Exact
i am using hibernate with MYSQL.i have a question about Hibernate MatchMode.EXACT here is my code.
final org.hibernate.Session session = getHibernateTemplate().getSessionFactory().openSession();
...
1
vote
2answers
42 views
How to find first instance of HTML comment starting with <!— ? (Python)
Is there a simple way of finding the first instance of HTML comment starting with <!--?
I've been doing it as such:
for line in open('some.html'):
if line[:4] == "<!--":
print line
...
-1
votes
0answers
37 views
Find all substrings that match a wildcard containing pattern in given text
I am looking for a string matching algorithm that allows me to search for all the substrings in a text that match a pattern. The Pattern can contain one wildcard i.e. * meaning that any character can ...
0
votes
1answer
23 views
Matching prefixes for list of words with mysql DB
My goal is to avoid queries that tries to match wildcards because it is X100 times slower than queries that match prefix with a wildcard followed.
For a single word it is not a problem, but what if i ...
0
votes
1answer
69 views
Approximate String Matching in R
for my research I have to match two data sets containing fund information. Unfortunately there is no common identifier. The good thing is that I have an identifier in both documents for the document ...
0
votes
0answers
31 views
KMP failure function calculation
My professor solved the kmp failure function as follows:
1 2 3 4 5 6 7 8 9
a a b a a b a b b
0 1 2 1 2 3 4 5 1
From other texts I checked online, I found out it might be wrong, I went back to ...
0
votes
0answers
83 views
Algorithm for calculation of the Boyer-Moore good suffix table
Can somebody give a clear explanation of the calculation procedure of the good suffix table used in the Boyer-Moore string search? ...
0
votes
1answer
37 views
Getting illegal character range in regex :java
I have a simple regex pattern that verifies names. But When I run it I get illegal character range error. I thought by escaping "\s" it will allow a space but the compiler is still complaining.
...
-1
votes
0answers
37 views
trie match optimization with learning set [closed]
I need to implement an optimization algorithm for a machine learning application in a trie based distance match function - these are the existing optimization libraries that came up in an online ...
1
vote
2answers
32 views
Detect and match function opening and end brace in source code
I would like to know if there are already good algorithms to detect function declaration, function content, its opening brace and closing one.
For development, debug and testing for bugs, it could be ...
0
votes
2answers
55 views
How can I split a string into an array in one operation, but only when the line contains a given pattern?
I have to match a line in a file and capture the lines contents.
The line is as as follows:
key:value key:value abc:123
I have a block of code processing different lines in the file based on the ...
1
vote
1answer
50 views
vimdiff: hop between 'blue' lines(lines with no corresponding text in file to compare)
I have to compare two (assembly) files and see where the instructions do not match.
In the vimdiff I use there are two colors to mark the difference in text.
1. blue: when there is no text in the ...
1
vote
2answers
43 views
Good hashing algorithm with proximity to original text input , less avalanche effect?
We need to store a text field ( say 2000 characters) and its unique hash ( say SHA1 ) in a MySQL table.
To test that text already exists in the MySQL table, we generate SHA1 of the text , and find ...
1
vote
3answers
71 views
Compare two matching strings algorithms - Practical approach
I wrote two differents algorithms that resolve some particular case of strings matching (implemented in C). I know that the theoretical O of this algorithms are equals but I think that in practical, ...
5
votes
3answers
147 views
Algorithm to match one input file with given numbers of file
I had an interview last week. I was stuck in one of the question in algorithm round. I answered that question, but the interviewer did not seem convinced. That's why I am sharing the same.
Please ...
0
votes
1answer
43 views
javascript string pattern match gave null result
var listing = "<a name=\"id43ba766a68\" class=\"id\"></a>";
var hexid = listing.match(/name=\"id([a-f0-9]+)\"/);
I am getting hexid to be null. What is wrong here?
I tested it using the ...
0
votes
2answers
36 views
manage “errors” in string.toLowerCase() with special characters like “Ñ” or “É”
I'm trying to do a translator in Java
I manage the dictionaries in binary trees but when I try to manage translate dictionaries like English-Spanish or viceversa words like "spanish" translate to ...
0
votes
1answer
59 views
How to match a String having metacharacters using regex matches function in Java
What could be the regular expression to match below String
String str = "<Element>\r\n <Sub>regular</Sub></Element>";
There is a
carriage return "\r", new line character ...
0
votes
0answers
20 views
How to do a String Matching For a Web Scraped Text Document
I have a text document which includes details about vehicle sales advertisements[classifieds]. I extracted those information from a website [web scraping].
Now i want to categorize those information ...
0
votes
0answers
21 views
Matching a free text string against catalogue list
I am trying to match a string that contains free text against a list of items in a catalogue table.
i.e. Catalogue table has Year, Brand, Series, Number, Name while the free text could have these in ...
-1
votes
1answer
51 views
Faster string replacement in python
Consider the following string replacement python codes:
import re
s = 'head abc.sys!0x1234 middle defg.sys!0x1a2b tail' # this could be potentially very long
d = {'0x1234' : 'Iamshorter',
...
-1
votes
2answers
174 views
jarvis-like ai python app [closed]
so we've all seen iron man, right? as a personal project i'm trying to create a jarvis-like ai. i dont need anything as sophisticated as jarvis by any means; that's just the best descriptor i can come ...
1
vote
4answers
62 views
matching none or more Lua pattern
I am wondering if it was possible to make a pattern that could work like this:
With [icon=star w=32 h=32 spin=90], it would return a table with:
icon: star
w: 32
h: 32
spin: 90
I've tried ...
0
votes
1answer
79 views
Suffix tree in Matlab
I am finding longest substring in text T, such that it is a prefix of string S. I have made algorithm using suffix tree which provides less complex solution, but since Matlab doesn't use pointers or ...
0
votes
1answer
175 views
VBA, Regular Expressions: Submatch FirstIndex and Length
I have a complex grouped regular expression, but in RegExp 5.5 the submatches of a match are returned as strings, there's no exposure to .FirstIndex and .Length. The captured strings are not unique.
...
0
votes
1answer
64 views
String matching in insert trigger - how to use in conditionals to return NULL?
In PostgreSQL 8.4.13 database with UTF8 encoding I keep a (non-English) dictionary in this table:
create table good_words (
word varchar(64) primary key
);
And a list of wrong (but often ...
1
vote
1answer
136 views
How to split a string and match its substrings to a list of substrings? - Python
I need to split a string up into all possible ways without changing the order of the characters. I understand this task can be seen as tokenization or lemmatization in NLP but i am attempting it from ...
2
votes
6answers
90 views
find elements in two lists which contain substrings
I have two lists, potentially of different lengths. Each list contains filenames in the form of strings. I don't have control over the names, but I'm assured that the name structure won't change. It ...
1
vote
7answers
65 views
Javascript Regex I'm struggling with
I am admittedly NOT a regex person but usually I can figure my way around something. This one has me stumped...
I need to match and replace a double greater than str (>>) that has an optional leading ...
1
vote
1answer
139 views
Why Lucene algorithm not working for Exact String in Java?
I am working on Lucene Algorithm in Java.
We have 100K stop names in MySQL Database.
The stop names are like
NEW YORK PENN STATION,
NEWARK PENN STATION,
NEWARK BROAD ST,
NEW PROVIDENCE
etc
When ...
6
votes
1answer
79 views
How to remove ordinal value in Java?
I have Station Names like 23 St, 21 St in our mysql database.
I am applying Lucene Algorithm to search the stations in Java.
For 23 St user can give inputs like 23rd St, 23rd etc.
I want to remove ...
1
vote
1answer
75 views
Optimizing full text search in SQLite
I am using full text search to find certain items in a huge tree structure. Most of the time I am only interested in matching items under a node. But when I use select * from MYTABLE where match ...
0
votes
2answers
90 views
Python url string match
My problem is the following. I have a long list of URLs such as:
www.foo.com/davidbobmike1joe
www.foo.com/mikejoe2bobkarl
www.foo.com/joemikebob
www.foo.com/bobjoe
I need to compare all the ...
3
votes
2answers
48 views
Not in regular expression
I am trying to write a regex pattern for finding a spesific string which is not inside of quotation marks. for example;
where value = '~foo'; //no match
where value = ~foo; //match
I may seek ...
7
votes
6answers
210 views
PostgreSQL and word games
In a word game similar to Ruzzle or Letterpress, where users have to construct words out of a given set of letters:
I keep my dictionary in a simple SQL table:
create table good_words (
...
1
vote
3answers
108 views
Programming concept
I want to make a program that sort mail from junkmail using a point--system.
For some couple of words in the mail,
I want the program to give different points for each word that I have in my ...
1
vote
2answers
59 views
How to resolve two slightly different names of same product (mobile phone) in program?
I am working on a web app where I collect data about mobile phones from several websites. The problem is that websites use slightly different naming of mobile phones. For eg the websites use the ...
1
vote
1answer
23 views
RegEx for match string containing ${reg.xx.xx. . . .}
Can someone please provide me a regex for match word like ${reg.employee.name} or ${reg.gihan.anuruddha} etc. In here word inside ${} pattern and always starting reg. Rest of the word count after ...
0
votes
2answers
171 views
String pattern matching in T-SQL
I am trying to create a View on a Log table. A lot of the logs are from "potentially dangerous form requests", and while I'm interested in capturing these, they also create a lot of noise, so I'd ...
0
votes
1answer
87 views
Java parentheses index matching
I'm writing code to discover the inner left most index of a string (I'm doing string parsing)
Does the following code look correct?
String t = "VREF_DAC_BAND_GAP_(VALUE|DELTA|TRIM|K(7-0|15-9))"
...
0
votes
0answers
214 views
Simple n-gram algorithm
I am looking for an algorithm (or C#, Java source) that can find n-grams in sentences. Specifically, I have a vocabulary of 100 words (w1 to w100) and sentences composed of these words (s1, s2, s3 ...





