Tagged Questions
The textmatching tag has no wiki summary.
29
votes
21answers
5k views
Regexp recognition of email address hard?
I recently read somewhere that writing a regexp to match an email address, taking into account all the variations and possibilities of the standard is extremely hard and is significantly more ...
5
votes
6answers
242 views
Data Comparison
We have a SQL Server table containing Company Name, Address, and Contact name (among others).
We regularly receive data files from outside sources that require us to match up against this table. ...
3
votes
1answer
130 views
How can I match string order between two documents in Perl?
I've a problem in making a PERL program for matching the words in two documents. Let's say there are documents A and B.
So I want to delete the words in document A that's not in the document B.
...
3
votes
7answers
262 views
how to determine if a record in every source, represents the same person
I have several sources of tables with personal data, like this:
SOURCE 1
ID, FIRST_NAME, LAST_NAME, FIELD1, ...
1, jhon, gates ...
SOURCE 2
ID, FIRST_NAME, LAST_NAME, ANOTHER_FIELD1, ...
1, jon, ...
2
votes
1answer
129 views
How do I count varchar in a varchar using TSQL
What is the best way to count the occurence of a varchar within a varchar.
I rather not loop through a text in order to find certain combinations.
This select only find the first
SELECT CASE WHEN ...
2
votes
10answers
2k views
How to match URIs in text?
How would one go about spotting URIs in a block of text?
The idea is to turn such runs of texts into links. This is pretty simple to do if one only considered the http(s) and ftp(s) schemes; however, ...
1
vote
1answer
89 views
How to get exact match in semi-complicated countifs() formula
First, the formula I'm currently using:
...
1
vote
6answers
441 views
Representing a text file as single unit in Java, and matching strings in the text
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:
BufferedReader input = new ...
0
votes
4answers
109 views
Using if clause inside Regular Expression
I am currently coding a .net windows app using vb.net.
I am trying to pass a regular expression to Regex.Match to extract certain texts from an article. How do I write an if condition within a ...
0
votes
1answer
173 views
Normalizing strings for text matching with preg_replace
I'm performing a pretty simple text matching between a set of names from my MySQL db and a set of strings from a CSV file. Before the actual comparison, I run preg_replace with an array of options to ...
0
votes
1answer
107 views
Problem with stristr text matching in PHP
I'm running a fairly simple script which tries to match strings from a csv file with potential matches in a mysql table (collation: ut8_general_ci). For each row in the csv file, I pull out the ...
0
votes
0answers
310 views
Soft Keyboard example : Creating a simple user dictionary for it
I have used the sample soft keyboard to make a keyboard. I need to create user dictionary for it which will show the related words to what is typed.
Please see this picture
...