Help for this page

Select Code to Download


  1. or download this
    print "\\";  # a backslash
    
  2. or download this
    print "\\\\";   # two backslashes
    
  3. or download this
    @file = split ("\\\\",$file);  # split on a single backslash
    
  4. or download this
    @file = split /\\/,$file;  # split on a single backslash