Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
310 B

  1. $start = "one two Variable three four";
  2. $stop = 14; # $ARGV[1];
  3. #$ARGV[0];
  4. #printf("Opening Filename: printing from characters [%d..%d]\n",$start,$stop);*/
  5. while(<STDIN>)
  6. {
  7. ($temp = $_) =~ s/$ARGV[0]/$ARGV[1]/im;
  8. # $temp = substr($_,$start,$stop);
  9. print $temp; # ,"\n";
  10. }