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 …
14
votes
19answers
2k 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 signifi …
3
votes
7answers
189 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_FIE …
1
vote
10answers
421 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( …
5
votes
6answers
191 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 agai …
