Tagged Questions

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
1answer
176 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
110 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 ...