不是量词 * ,贪心吗?不应该\s*
匹配 0 个或多个出现的空格,而哪个又会匹配所有内容,直到给定输入字符串的结尾?
#!/usr/bin/perl
use strict;
use warnings;
my $input="Name : www.devserver.com\n";
$input=~s/\w+.:\s*//; # /s* should not it match everthing till \n at the end ?
print $input;
请帮助我理解这种行为。