1
我在Perl中使用正則表達式有點困惑。我想刮一個網頁,它似乎產生的字符串是這樣的:Referred for adjudication-Orders issued.G.O.(Rt)No.826/2015/LBR\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0}\x{a0} Dated
Perl用正則表達式去除字符
我嘗試使用以下內容:
$file =~ s/\\x\{a0\}//g;
,但它不會刪除字符。如何在Perl中使用正則表達式去除字符\x{a0}
?