Help for this page

Select Code to Download


  1. or download this
    $test = "mouse_eatsCat_andDog.txt";
    $test =~ s/"_(.+)"/$1/; #because I want to get "eatsCat_andDog.txt"
    print "$test";
    #result is "mouse_eatsCat_andDog.txt"