Page 1 of 1

Regular expressions in raku: So I have this list of 1 million song titles that contain a bunch of letters and formats an

Posted: Wed Apr 27, 2022 3:32 pm
by answerhappygod
Regular expressions in raku: So I have this list of 1 million
song titles that contain a bunch of letters and formats and such.
My task is to create a regular expression that I can use with a
conditional statement that skips the following:
Only if the title contains whitespace, and
only if the title contains an apostrophe ( ' ).
"next;" allows us to skip lines that we do not want to
check.
I am still working with this code:
and I have run out of ideas for what I am missing in my regular
expression to properly negate the characters stated above. I need
help finding regular expressions for both of these, please.