Search string in files

  • Thread starter Thread starter ruso
  • Start date Start date
R

ruso

i want to search the strings in files in a folder how can i do with
regular expression
thanks
 
ruso,

In order to do this, you will have to read the contents of the files
into a String, and then run the RegEx parser on that. Granted, it would be
nice if you could pass a seekable Stream into it (as well as an Encoding),
but that's not there (yet).

I'm actually going to post that recommendation now to the product
feedback center.

Hope this helps.
 
yes i did the search the string in files with regex. but i have 10000
string to search in files how can i search very fast.

Thanks
 
Back
Top