在Perl中将字符串与“$”进行比较

时间:2015-02-25 05:42:47

标签: regex perl

我正在解析的文件中间有这样的字符串。

$t
$a

我的目标是消除这种线条。所以我想要这样的东西......

if($line matches "$") {
next; #Go to next line of the file and do not process further
}   

我该如何做到这一点?

1 个答案:

答案 0 :(得分:2)

你可以使用这个,

if($line =~ m/^\h*\$/m) {
next; #Go to next line of the file and do not process further
}

^断言我们处于起点,\h*匹配零个或多个水平空格字符。