Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは文字列です:
[quote="test post1"]this is a test post[/quote]
テストpost1値のみを取得したい
これが私がしていることです...
[tmp test][item-param body] [/tmp] $str1 = $Scratch->{test}; $str1 =~ m/"(.?)"/;
しかし、それは期待値を与えていません:test post1
どんな助けでもありがたいです。
#!/usr/bin/perl; my $str = '[quote="test post1"]this is a test post[/quote]'; if($str=~m/\"(.+)\"/) { print $1; }