Help for this page

Select Code to Download


  1. or download this
    #perl
    $foo .= $bar;
    
  2. or download this
    #python
    foo.append(bar);
    
  3. or download this
    # perl
    $foo =~ s/\W//g;
    
  4. or download this
    #python
    import re
    foo = re.sub(foo,'\W','')