Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T161069
Change Details
Change Details
Old
New
Diff
Execute this code: ``` " ?" regexMatch "(?:\t|\s|\n|\r)*" ``` seems like it's related to the `\s` character. Using this regex works fine: `"(?:\t| |\n|\r)*"`
Execute this code: ``` " ?" regexMatch "(?:\t|\s|\n|\r)*" ``` seems like it's related to the `\s` character. Using this regex works fine: `"(?:\t| |\n|\r)*"`. Also works fine with `\s*`
Execute this code: ``` " ?" regexMatch "(?:\t|\s|\n|\r)*" ``` seems like it's related to the `\s` character. Using this regex works fine: `"(?:\t| |\n|\r)*"`
. Also works fine with `\s*`
Continue