ref: 10639872d6c832f4215fca9f5d33a90b59d8021f
dir: /lib/regex/test/unicode.myr/
use std use regex use "testmatch" const main = { testmatch(".*bæc", "Abæc", `std.Some [][:]) testmatch("(\\p{L}*)bæc\\P{L}*", \ "Aabæc%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", \ `std.Some ["Aa"][:]) /* test various syntaxen */ testmatch("(\\pL*)bæc\\PL*", \ "Aabæc%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", \ `std.Some ["Aa"][:]) testmatch("(\\p{Letter}*)bæc\\P{Uppercase_Letter}*", \ "Aabæc%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", \ `std.Some ["Aa"][:]) testmatch(".", "æ", `std.Some [][:]) }