REGEX start and end
-
Hi guys, I need some help please, example I have a string as follows T12322322232O, how do I parse everything between T and O using regex? Please help.
sasa
If you mean you want to capture "everything between T and O using regex", then something like
"T(?'Data'.*)O"
should work. If the regex Matches, there'll be a Group named "Data" whose Value contains the digits. If that's not what you mean, then please post more details. -
Hi guys, I need some help please, example I have a string as follows T12322322232O, how do I parse everything between T and O using regex? Please help.
sasa
This sounds like a homework problem... look for how to check for start and end (it is on MSDN)
-
Hi guys, I need some help please, example I have a string as follows T12322322232O, how do I parse everything between T and O using regex? Please help.
sasa
T./?O