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.
正規表現を使用して変数を照合する方法と同様に、代わりに正規表現を使用して変数に可変長を割り当てたいと考えています。
例: for ループ$iで実行される counter を取得します。$i
$i
for($i=0; $i < 256; $i++) { $myVariable = a{$i}; }
$myVariableカウンター変数に基づいて、異なる長さになりたい$i
$myVariable
たとえば、$iが 5の$myVariabe場合、"aaaaa"
$myVariabe
"aaaaa"
for my $i (1..255) { my $myVariable = 'a' x $i; ... }
また
my $myVariable; for my $i (1..255) { $myVariable .= 'a'; ... }