perl 中 $/ 代表了什么意思? 日期:2018-03-04 14:01:08 人气:1 perl 中 $/ 代表了什么意思? 自带的全局变量,默认值为“\n". perl中”行“的概念就由$/决定。 { $data = "this>"; local $/ = ">"; chomp($data); } $data的值就是”this".