String function in VB

  • Thread starter Thread starter JR
  • Start date Start date
J

JR

I am having trouble remembering a string function that I used a while
back in VB. I don't know if it was .NET specific.

The function either searched a string or replaced a substring in a
string or something similar. The main thing I remember about the
function is that it used regular expression like syntax for the
filtering mechanism.

I know this is vague but any help is appreciated.

Thanks.
 
Yes...."super vague" is an understatement. The function in question was
not a member function of the string class. The key was that it used
"regular expression" like syntax for the filter.
 
See System.Text.RegularExpressions

--
Patrice

JR said:
Yes...."super vague" is an understatement. The function in question was
not a member function of the string class. The key was that it used
"regular expression" like syntax for the filter.
 
JR said:
Yes...."super vague" is an understatement. The function in question was
not a member function of the string class. The key was that it used
"regular expression" like syntax for the filter.

Maybe you are referring to VB's 'Replace' function or 'Like' operator.
 
Back
Top