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

Popular posts from this blog

HTML/CSS - Automatically set height width from background image? -

php - Mysql Show Process - Sleep Commands and what to do -

c - What is the address of buf (the local variable in the main function)? -