Regex match string with possible spaces -
I am trying to create a RegEx that will get the string
02075517 [< P> Although this string sometimes contains spaces, I'll need a match
020 75517 [
and
0207 5517 [
and
020 7551 7 [
etc.
I tried to use this site here: but there is not enough.
Thank you very much
ed
Can define to match. ([0-9] + \ []
will match multiple numbers or spaces that will be after a square bracket.
Comments
Post a Comment