我正在寻找在 Perl 中执行此操作的解决方案。
示例:如果我的字符串是:
my $content = 'toto /app/blah titi\nhuh/app/ttt wew';
我的模式是:/app/something
我想在数组中作为输出:/app/blah
和/app/ttt
.
(这基本上是什么grep -E -o '\/app\/[a-z]*'
)
我不能让它工作!我试过:
my $content = 'toto /app/blah titi\nhuh/app/ttt wew';
$content =~ m/(\/app\/[a-z]*)/;
print "Group: $1 $2\n";
但这只会打印:(/app/blah
不是/app/ttt
)
无论如何,我不知道如何将结果放在表格中:
my (@table) = @_;
该表不包含任何内容!
谢谢