当前位置: 首页 > 编程笔记 >

Perl parse_line()

狄灵均
2023-03-14
本文向大家介绍Perl parse_line(),包括了Perl parse_line()的使用技巧和注意事项,需要的朋友参考一下

示例

使用parse_line()Text :: ParseWords:

use 5.010;
use Text::ParseWords;

my $line = q{"a quoted, comma", word1, word2};
my @parsed = parse_line(',', 1, $line);
say for @parsed;

输出:

"a quoted, comma"
 word1
 word2
           

 类似资料:

相关阅读

相关文章

相关问答