Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    #use v5.20;
    ...
    }
    
    print "Found $count matches.\n";
    
  2. or download this
    #!/usr/bin/env python
    import re, sys
    ...
        sys.exit(1)
    
    print(f"Found {count} matches.")
    
  3. or download this
    Perl   0.463s
    Found 200246 matches.
    
    Python 0.250s
    Found 200246 matches.