Sparrow6.git | examples/tasks/email-validator/ | task.check
note: verify thing as email
note: verify local-part
within: ^^ (.*) \@ <[ a .. z 0 .. 9 \- ]>+ \s* $$
note: find quote symbol symbols
~regexp: <!before \\> (\")
code: <<RAKU
!raku
for captures() -> $c {
say "note: quote symbol found: ", $c.raku;
}
RAKU