blob: 615fcbd7f54d0152f662beb4bf286d298fc60504 (
plain)
1
2
3
4
5
6
7
8
|
# check spaces in all their forms
(Cmd) say how many spaces
how many spaces
(Cmd) say how many spaces
how/\s{1}/many/\s{1}/spaces
(Cmd) say "how many spaces"
how/\s+/many/\s+/spaces
|