Perl Regex: replace and assign

    技术2022-05-11  101

    #! perl -w$/ = "/n";

    $fred = "this is justification";($tom = $fred) =~ s/this/that/;print $fred;print $tom;


    最新回复(0)