Regular Expression Question

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

Andrew Morton

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
 
B

Brian Gideon

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
 

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