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 hn newest 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
tomsmeding|10 months ago This is a common approach when the regex needs to match any character including newlines; `.` often doesn't.
tomsmeding|10 months ago
dimava|10 months ago
Also you can use . with the dotAll /s