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.
3 文字のチャンクに分割する必要がある文字列があります。グーグルは、正常に動作する次のコードを見つけました。
$input = "DEADBEEF"; @output = (); my @output = ( $input =~ m/.{3}/g ); print $_."\n" foreach (@output);
私は Perl の初心者です。誰かが私に式が何をするのか説明できますか$input =~ m/.{3}/g?
$input =~ m/.{3}/g
$input - scalar variable =~ - apply regular expression m - Match (in list context so return a list of matched substrings) / - start of expression . - any character {3} - 3 times / - end of expression g - globally