You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@azbo I'm guessing you expect \s to also match the EOL sequence, \n or \r\n, depending on the file.
The reason is because we don't switch on the multi-line flag for the regular expression in this case. The workaround is to use \w+.\w+;[\s\n]+ (manually write \n in there). This gives us a hint to enable the multi-line flag for the regex.
Steps to Reproduce:
1.Regular replacement
setResourceId;
setResourceType;
\w+.\w+;\s+
“\s+” The newline character cannot be identified normally
Does this issue occur when all extensions are disabled?: Yes/No
The text was updated successfully, but these errors were encountered: