If the fullstop matches everything but the newline, what matches everything including newlines (if anything) or what can I do to match all characters and none characters ?
In logic a or non-a is always true. Same here. All these pattern match all characters of any length (*).
[tt]
.pattern="[\s\S]*"
.pattern="[\w\W]*"
.pattern="[\d\D]*"
.pattern="([x]|[^x])*" 'more and more silly
.pattern="(a|[^a])*"
etc etc...
[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.