undefined
hi! I m new to regular expressions and i cant make a regular expression that gives me the string <div id=text> because it has a space.. I think..
I would be very happy if you could help me!
undefined
hi! I m new to regular expressions and i cant make a regular expression that gives me the string <div id=text> because it has a space.. I think..
I would be very happy if you could help me!
You should be able to use a "." (ie. a period) in place of the space. For example, <div.id=text>. The . should match any one character, and a space is considered a character. I believe to match a literal "." you would just escape it like <div\.id=text>.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.