Help for this page

Select Code to Download


  1. or download this
    package Filter::BackslashS;
    use Filter::Simple;
    use strict;
    
    FILTER_ONLY regex => { s/\\s/[\\s\xA0]/g };
    
  2. or download this
    use Filter::BackslashS;
    
    print "\xA0" =~ /\s/ ? "Yay!\n" : "Hmmm\n";