top | item 43751104

(no title)

LaputanMachine | 10 months ago

I've also seen people use `[\s\S]` to match all characters when they couldn't use `.`.

discuss

order

tomsmeding|10 months ago

This is a common approach when the regex needs to match any character including newlines; `.` often doesn't.

dimava|10 months ago

I generally use `[^]`

Also you can use . with the dotAll /s