Search Results

5
votes

Help Writing a Regular Expression

/^cn=([^,]+),/ …
4
votes

Locate Pattern the Letter I followed by a space then three alpha numerics followed by a space

/I ([0-z]{3} \d{6} \d{7})/ I don't know VB, but that regex would work with say perl. Update: Given the new string provided.. something like this may work (depen …
0
votes

How to match “Parameter Name: Value” in C# Regex?

Not having used C# I can't give a direct code sample. If it follows normal regex patterns though, the problem might be the ^/$.. normally that matches start of string (^) and end of string …