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.
のような正規表現に困惑しています.*
.*
#!usr/bin/perl use strict; use warnings; my $text = "scott"; $text =~ s/.*/\//g; print $text;
出力://
//
だから、なぜ結果が//ではなく/.
/