Tagged Questions

String matching is the problem of finding occurrences of one string (“pattern”, “needle”) in another (“text”, “haystack”).

learn more… | top users | synonyms

32
votes
34answers
3k views

Are Regular Expressions a must for programming?

Are Regular Expressions a must for doing programming?
25
votes
8answers
7k views

A better similarity ranking algorithm for variable length strings

I'm looking for a string similarity algorithm that yields better results on variable length strings than the ones that are usually suggested (levenshtein distance, soundex, etc). For example, Given ...
18
votes
4answers
2k views

Finding how similar two strings are

I'm looking for an algorithm that takes 2 strings and will give me back a "factor of similarity". Basically, I will have an input that may be misspelled, have letters transposed, etc, and I have to ...
17
votes
4answers
230 views

what is a good metric for deciding if 2 Strings are “similar enough”

I'm working on a very rough, first-draft algorithm to determine how similar 2 Strings are. I'm also using Levenshtein Distance to calculate the edit distance between the Strings. What I'm doing ...
11
votes
5answers
120 views

c# string comparison method returning index of first non match

Is there an exsting string comparison method that will return a value based on the first occurance of a non matching character between two strings? i.e. string A = "1234567890" string B = ...
11
votes
2answers
188 views

Rating the quality of string matches

What would be the best way to compare a pattern with a set of strings, one by one, while rating the amount with which the pattern matches each string? In my limited experience with regex, matching ...
8
votes
2answers
3k views

Using Rabin-Karp to search for multiple patterns in a string

According to the wikipedia entry on Rabin-Karp string matching algorithm, it can be used to look for several different patterns in a string at the same time while still maintaining linear complexity. ...
7
votes
4answers
152 views

elegant way to match two wildcarded strings

I'm OCRing some text from two different sources. They can each make mistakes in different places, where they won't recognize a letter/group of letters. If they don't recognize something, it's replaced ...
7
votes
9answers
1k views

Search for string allowing for one mismatch in any location of the string

I am working with DNA sequences of length 25 (see examples below). I have a list of 230,000 and need to look for each sequence in the entire genome (toxoplasma gondii parasite). I am not sure how ...
7
votes
8answers
1k views

Fuzzy matching of product names

I need to automatically match product names (cameras, laptops, tv-s etc) that come from different sources to a canonical name in the database. For example "Canon PowerShot a20IS", "NEW powershot A20 ...
6
votes
4answers
128 views

How to verify that the password contains X uppercase letters and Y numbers?

How do I verify in C# that the password contains at least X uppercase letters and at least Y numbers, and the entire string is longer than Z? Thanks.
6
votes
2answers
107 views

python - regex search and findall

I need to find all matches in a string for a given regex. I've been using findall() to do that until I came across a case where it wasn't doing what I expected. For example: regex = ...
6
votes
1answer
142 views

Real time Prefix matching and auto-complete in Quora

How is real time autocomplete with prefix matching implemented in Quora ? Since Solr and Sphinx doesn't support real-time updating so what changes were made to support real time updating?
6
votes
4answers
378 views

strstr faster than algorithms?

I have a file that's 21056 bytes. I've written a program in C that reads the entire file into a buffer, and then uses multiple search algorithms to search the file for a token that's 82 chars. I've ...
6
votes
1answer
98 views

findSubstrings and breakSubstring in Data.ByteString

In the source of Data/ByteString.hs it says that the function findSubstrings has been deprecated in favor of breakSubstring. However I think the findSubstrings which was implemented using the KMP ...
6
votes
2answers
286 views

Efficient substring matching in perl

I am looking for an efficient solution to do find the longest possible substring in a string tolerating n mismatches in the main string Eg: Main String AGACGTACTACTCTACTAGATGCA*TACTCTAC* ...
6
votes
4answers
2k views

Regular Expression Match to test for a valid year

Given a value I want to validate it to check if it is a valid year. My criteria is simple where the value should be an integer with 4 characters. I know this is not the best solution, heck it wont ...
6
votes
2answers
161 views

Would there be any advantage in comparing pattern and text characters right-to-left instead of left-to-right?

This is the exercise in "Introduction to The Design and Analysis of Algorithms". It's a string matching issue. Say I have string ABCD, and have a pattern XY. And want to see if the string contains the ...
5
votes
2answers
86 views

How to map the most “similar” strings from one list to another in python?

Given are two lists containing strings. One contains the name of organisations (mostly universitys) all around the world - not only written in english but always using latin alphabet. The other list ...
5
votes
1answer
227 views

agrep: only return best match(es)

I'm using the 'agrep' function in R, which returns a vector of matches. I would like a function similar to agrep that only returns the best match, or best matches if there are ties. Currently, I am ...
5
votes
4answers
456 views

Aho-Corasick and Proper Substrings

I'm trying to understand the aho-corasick string match algorithm. Suppose that our patterns are abcd and bc. We end up a tree like this [] /\ [a]..[b] / : | [b].: [c] | ...
5
votes
1answer
101 views

Algorithm for matching data

I have a project where I am testing a device that is very sensitive to noise (electromagnetic, radio, etc...). The device generates 5-6 bytes per second of binary data (looks like gibberish to an ...
5
votes
5answers
223 views

Finding matching portions of two strings in PHP

I'm looking for a simple way to find matching portions of two strings in PHP (specifically in the context of a URI) For example, consider the two strings: ...
5
votes
3answers
138 views

Is there a faster method to match an arbitrary String to month name in Java

I want to determine if a string is the name of a month and I want to do it relatively quickly. The function that is currently stuck in my brain is something like: boolean isaMonth( String str ) { ...
5
votes
2answers
2k views

XPath partial of attribute known

I known the partial value of an attribute in a document, but not the whole thing. Is there a character I can use to represent any value? For example, a value of a label for an input is "A. Choice ...
4
votes
6answers
104 views

Algorithm to match 2 lists with wildcards

I'm looking for an efficient way to match 2 lists, one wich contains complete information, and one which contains wildcards. I've been able to do this with wildcards of fixed lengths, but am now ...
4
votes
2answers
87 views

getting a string from a list of substrings

I asked to solve the following problem in a programming competition (facebook recruitment) Input: list of sub-strings: {"bar","foo","hi"} //from 1 to 100 sub-strings and the sentence: ...
4
votes
6answers
343 views

TCL string match vs regexps

Is it right that we should avoid using regexp as it is slow. Instead we should use string operations. Are there cases that both can be used but regexp is better?
4
votes
5answers
106 views

Check if a string is a possible abbrevation for a name

I'm trying to develop a python algorithm to check if a string could be an abbrevation for another word. For example fck is a match for fc kopenhavn because it matches the first characters of the ...
4
votes
2answers
136 views

difflib on Ruby

Is there a library similar to Python's difflib on Ruby? Particularly, I need one that has a method similar to difflib.get_close_matches. Any recommendations?
4
votes
3answers
230 views

Locate “N Gram” substrings that are smallest distance away from a target string N character long

I am looking for an algorithm, preferably in Python that would help me locate substrings, N characters long, of exisiting strings that are closest to a target string N character long. Consider the ...
4
votes
2answers
309 views

Regex to match 'lol' to 'lolllll' and 'omg' to 'omggg', etc

Hey there, I love regular expressions, but I'm just not good at them at all. I have a list of some 400 shortened words such as lol, omg, lmao...etc. Whenever someone types one of these shortened ...
4
votes
8answers
446 views

efficient algorithm for searching one of several strings in a text?

I need to search incoming not-very-long pieces of text for occurrences of given strings. The strings are constant for the whole session and are not many (~10). Additional simplification is that none ...
4
votes
5answers
2k views

Closest match for Full Text Search

I am trying to implement an internal search for my website that can point users in the right direction in case the mistype a word, something like the did you mean : in google search. Does anybody ...
3
votes
2answers
121 views

String parsing and matching algorithm

I am solving the following problem: Suppose I have a list of software packages and their names might looks like this (the only known thing is that these names are formed like SOMETHING + VERSION, ...
3
votes
2answers
42 views

Parsing a game's console commands?

I need to be able to handle data that can look like: set setting1 "bind button_x +actionslot1;bind button_y \" bind button_x +stance \" " bind button_a jump set setting2 1 1 0 1 toggle setting_3 " ...
3
votes
1answer
66 views

Longest Common Prefix Array

Following is the Suffix array and LCP array information for string MISSISSIPPI. I know that LCP gives information about the lenght of the longest common prefix between str[i - 1] and str[i]. How Do I ...
3
votes
2answers
101 views

Shortest Repeating Sub-String

I am looking for an efficient way to extract the shortest repeating substring. For example: input1 = 'dabcdbcdbcdd' ouput1 = 'bcd' input2 = 'cbabababac' output2 = 'ba' I would appreciate any ...
3
votes
1answer
67 views

Finding duplicate books

I have a number of list of book's name along with their authors(no ISBN number). I want to maintain a single list containing unique entries of books and remove the duplicate entries of every book. ...
3
votes
2answers
70 views

How do I match string till end of text file?

In this line of code I want it to match the string from 'Review Notes \50optional\51' till the end of the text file. How can I do this? reviewNotes = contents.match(/Review Notes ...
3
votes
1answer
114 views

Java quick string matching (to associate a text to a category)

Suppose i have a post which is something like TITLE: "WEB: SEO in 2011" DESCRIPTION: "A conference talking about SEO in the web of the 2011" also, i have a list of categories with keywords ...
3
votes
3answers
97 views

string searching with returning matched line in python

I am quite new in python.I want to match string in some lines of a file.Let's say, I have string: british 7 German 8 France 90 And I have some lines in a file as like: <s ...
3
votes
3answers
110 views

Regex to match a pattern only if its length is bigger than a value

I have 2 strings and want to know if string 2 have a subset of the characters of string 1 on the same order this subset has a minimun size determined by me. For example: string 1 = ...
3
votes
2answers
246 views

Wildcard string matching in Ruby

I'd like to write a utility function/module that'll provide simple wildcard/glob matching to strings. The reason I'm not using regular expressions is that the user will be the one who'll end up ...
3
votes
2answers
522 views

String similarity in PHP: levenshtein like function for long strings

The function levenshtein in PHP works on strings with maximum length 255. What are good alternatives to compute a similarity score of sentences in PHP. Basically I have a database of sentences, ...
3
votes
3answers
978 views

JavaScript regular expression - two [a-z] followed by three [0-9] only

I've got a simple regular expression: [A-z]{2}[0-9]{3})$/g inside the following: regForm.submit(function(){ if ($.trim($('#new-usr').val()).match(/([A-z]{2}[0-9]{3})$/g)) { alert('No'); ...
3
votes
1answer
96 views

How can I search for strings with characters not on the keyboard (non-english)?

I have a search form that I want my users to be able to enter English character equivalents for non-English characters. For example. To find Ælfred, the user could search for "Ælfred" or "AElfred". ...
3
votes
4answers
370 views

Difference between performance of the two sql queries?

I have a field in my table having text data type. Is there a difference in performance for the following two sql queries: select * from tablename where fieldname="xyz%"; select * from tablename ...
3
votes
5answers
107 views

Determining whether values can potentially match a regular expression, given more input

I am currently writing an application in JavaScript where I'm matching input to regular expressions, but I also need to find a way how to match strings to parts of the regular expressions. For ...
3
votes
3answers
1k views

string matching algorithms used by lucene

i want to know the string matching algorithms used by Apache Lucene. i have been going through the index file format used by lucene given here. it seems that lucene stores all words occurring in the ...

1 2 3 4