You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
425 B

4 years ago
  1. A basic filter
  2. --------------
  3. <!-- exec-raw cat examples/filter_authors.pl -->
  4. #!/usr/bin/env perl
  5. use warnings;
  6. use strict;
  7. use 5.10.0;
  8. # Extract name where given name matches "John":
  9. while (<>) {
  10. say "$2 $1" if m/^(.*)\t(Jo.*?)(\t|$)/i;
  11. }
  12. <!-- end -->
  13. <!-- exec -->
  14. $ ./examples/filter_authors.pl examples/authors.tsv
  15. John Brunner
  16. John Tolkien
  17. Jo Walton
  18. <!-- end -->