Regular Expression to extract all numbers from a string to a group collection

  • Thread starter Thread starter Jay Douglas
  • Start date Start date
J

Jay Douglas

Hello all.
I'm having a hard time coming up with a regular expression that can
extract just the numbers out of string into a GroupCollection.

Any help is appreciated.
 
Jay Douglas said:
Hello all.
I'm having a hard time coming up with a regular expression that can
extract just the numbers out of string into a GroupCollection.

How about: RegEx.Matches(@"\b\d+\b")?
 

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

Back
Top