String function in VB

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.
 
J

JR

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.
 
P

Patrice

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.
 
H

Herfried K. Wagner [MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top