5
votes
4answers
453 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).
…
1
vote
3answers
106 views
String matching in python with re
I have a file in this structure:
009/foo/bar/hi23123/foo/bar231123/foo/bar/yo232131
What i need is to find the exact match of a string; e.g. only /foo/bar among /foo/bar/hi and / …
0
votes
1answer
83 views
Hibernate case-insensitive utf-8/unicode collation that works on multiple DBMS
I'm looking for Hibernate annotation or .hbm.xml that allows me to specify a table column as case-insensitive string working in unicode/utf-8/locale-independent manner that works o …
0
votes
2answers
85 views
i want to capture a single match
i want to capture only the first match through the expression
<p>.*?</p>
i have tried <p>.*?</p>{1} but it is not working it returns all the p tags which …
17
votes
32answers
1k views
Are Regular Expressions a must for programming?
Are Regular Expressions a must for doing programming?
4
votes
2answers
290 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 …
1
vote
2answers
83 views
String matching technique(s) by converting to number?
I have various length strings which are full of Base64 chars. Actualy they are audio recognition datas differs by song-to-song.
For easily comparing parts of those strings i divid …
3
votes
4answers
330 views
MySQL, select records with at least X characters matching
Hello,
I am trying to accomplish the following. Let's say we have a table that contains these fields (ID, content)
1 | apple
2 | pineapple
3 | application
4 | nation
now, I a …
0
votes
3answers
157 views
How should I print out a particular character in the file after reading the file?
Hi,
I am reading a file using perl script. This file consists of strings with different characters and I am supposed to identify strings containing the character 'X'. I want to kn …
1
vote
6answers
258 views
Representing a text file as single unit in Java, and matching strings in the text
Hello,
How can I have a text file (or XML file) represented as a whole string, and search for (or match) a particular string in it?
I have created a BufferedReader object:
Buffe …
3
votes
1answer
146 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 in …
-1
votes
1answer
100 views
Which one is a more reliable matching scheme, EREGI or STRIPOS?
Which scheme according to you is a better one in case of matching?
Is it eregi or stripos or any other method?
5
votes
8answers
363 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", …
13
votes
4answers
537 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, …
4
votes
4answers
518 views
Closest match for Full Text Search
Hello,
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 goog …
