The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
44 views

How can i match the text file with some keywords in other file

I have one text file with some data. now i have a list of keywords in other text file file. Now i want to do the maching so that i can find out how many keywords from the second text file are in the ...
11
votes
2answers
541 views

How to do Java String matching using Boolean Search Syntax?

I'm looking for a Java/Scala library that can take an user query and a text and returns if there was a matching or not. I'm processing a stream of information, ie: Twitter Stream, and can't afford to ...
1
vote
1answer
407 views

How to get exact match in semi-complicated countifs() formula

First, the formula I'm currently using: ...
2
votes
1answer
675 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 ...
0
votes
4answers
183 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
307 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
198 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 ...
3
votes
1answer
189 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. ...
1
vote
6answers
570 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 ...
38
votes
19answers
8k 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
272 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
7answers
281 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
10answers
4k 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, ...