Closed sideshowbarker closed 9 years ago
In the XSD regex flavor, .* will not match linebreaks. If you want to allow linebreaks in the value, you have to do [\s\S] instead.
.*
[\s\S]
Thanks for this!
In the XSD regex flavor,
.*
will not match linebreaks. If you want to allow linebreaks in the value, you have to do[\s\S]
instead.