Skip to content

Instantly share code, notes, and snippets.

@gfldex
Created March 11, 2021 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfldex/ffa8d0e60cbd3845b4d91bd2029fcd5b to your computer and use it in GitHub Desktop.
Save gfldex/ffa8d0e60cbd3845b4d91bd2029fcd5b to your computer and use it in GitHub Desktop.
my @a = <1 B 3 D 4>;
my @b;
my $hit;
for @a -> $e {
@b.push: ($e ~~ m/(<alpha>) || { next } /).Str;
}
say @b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment