Help for this page

Select Code to Download


  1. or download this
    $var = "C:\\Dir1\\Dir2\\Dir3\\KeepMe";
    $var =~ s/C:\\Dir1\\Dir2\\Dir3//;
    print "\$var: $var\n";
    
  2. or download this
    $find="C:\\Dir1\\Dir2\\Dir3";
    $replace='';
    $var = "C:\\Dir1\\Dir2\\Dir3\\KeepMe";
    $var =~ s/$find/$replace/eeg;
    print "\$var: $var\n";