我从来没有使用过Perl,我有一个基本的问题.
my $string1 = "Hi. My name is Vlad. It is snowy outside."; my @array = split('.' $string1); ##essentially I want this,but I want the period to be kept
我想将这个字符串拆分为’.’但我想保持这个时期.这怎么可以实现?