Quantcast
Channel: Regex to ignore whitespace - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Simeon Mark Fernando for Regex to ignore whitespace

It looks like you want symmetrical quotes and whitespace, and to capture the string in between.trans\((\s*)(['"])(((?!\2).)*)\2\1\)The string is in $3.

View Article



Answer by KaspianR for Regex to ignore whitespace

The following should work as it's simply modifying your expression to support any number of whitespaces on either side of the quotes:trans\(\s*([\'"])(((?!\1).)*)\1\s*\)

View Article

Answer by Tim Biegeleisen for Regex to ignore whitespace

The following pattern seems to work here:trans\((\s*)(['"])(.*?)\2\1\)DemoHere we capture optional whitespace before the singly quoted term, and then ensure that we also match the same as \1 after that...

View Article

Regex to ignore whitespace

Consider 2 of the following:trans( 'Hello' )trans('Hello')My regex: trans\(([\'"])(((?!\1).)*)\1\)The above works well with the 2. case but does not work with case 1.I tried adding another capturing...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images