RegEx - Is this doable? In .NET
Tech-Archive recommends: Fix windows errors by optimizing your registry
Hi All,
Here is what I am trying to do.
I have a list of strings (Array, Collection or some store) stringlist1
I have an input text file. datafile1.txt
Given the list of strings and this input file, I want to parse the file and
see if the strings are found in the file. The result from this operation is
a list that contains only those strings from "stringlist1" that had a match
in the input file.
Is it a straighforward call or should I iterate through the file line by
line and then do a match/comparison for all items in the stringlist?
Thanks for your time,
V!
.
Relevant Pages
- Re: Beginners Question on binary arrays and storage
... Coming from a VB6 background and not having a Binary datatype, ... constant length strings of 1's and 0's and store in a Charfield. ... to code and decode the array to ship it up to SQL and back. ... (microsoft.public.sqlserver.programming) - Re: K&R2 Secition 5.9 - major blunders
... Each element of b doesn't point to a 20 element array of int. ... This mistake is crucial because ... my explanation is really the qualities of something else: ... > The use of the array of pointers is to store the strings. ... (comp.lang.c) - Re: K&R2 Secition 5.9 - major blunders
... Each element of b doesn't point to a 20 element array of int. ... This mistake is crucial because ... my explanation is really the qualities of something else: ... > The use of the array of pointers is to store the strings. ... (comp.lang.c) - Re: Returning array of strings through callback from unmanaged to
... Is the array of strings a jagged array or fixed length array? ... It is imperative that I am able to return the array of strings from the ... I have control over how many strings I want the unmanaged code to return ... What I want to accomplish is to pass a callback function to unmanaged ... (microsoft.public.dotnet.framework.compactframework) - Re: attempting to return values from array from w/in a function
... What I get is an array w/ only the most recent array entry. ... I am new to PHP & do not have formal scripting ... you end up comparing strings, but the test you mean probably is simply: ... case 1: {codeblock} ... (comp.lang.php) |
|