I'm trying to match some numbers in a string using a regexpressions and am having difficulty with th
Posted
by Ryan
on Stack Overflow
See other posts from Stack Overflow
or by Ryan
Published on 2010-05-03T17:09:23Z
Indexed on
2010/05/03
17:18 UTC
Read the original article
Hit count: 177
regex
here is the line i'm trying to parse
[\\?\Volume{d3f7f470-526b-11df-92eb-001a647802d2}\] 85 90 NotFound
I'm basically just trying to get the numbers that are outside of the brackets and ignore anything in between the brackets.
My original syntax worked until I realized that sometimes there would be numbers in the brackets (I was just using "([0-99]{2})")
any help would be greatly appreciated.
Thanks
© Stack Overflow or respective owner