Regular Expression Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a problem to figure out what the regular expression should I use to
parse the following string:-

{02}{10}{00}{03}{10}

and output it to:-
0210000310

Thank You.
 
Woo said:
I have a problem to figure out what the regular expression should I
use to parse the following string:-

{02}{10}{00}{03}{10}

and output it to:-
0210000310

Have you looked at the RegEx.Replace method?

Andrew
 
Hi,

I have a problem to figure out what the regular expression should I use to
parse the following string:-

{02}{10}{00}{03}{10}

and output it to:-
0210000310

Thank You.

Do you really need a regular expression for that. Why not just do a
String.Replace on it?

Brian
 
Back
Top