I am trying to split a string with multiple white spaces. I only want to split where there are 2 or more white spaces. I have tried multiple things and I keep getting the same output which is that it splits after every letter. Here is the last thing I tried
@cellMessage = split(s/ {2,}//g, $message);
foreach(@cellMessage){
print "$_ \n";
}
s/ {2,}//gis a substitution operation on the default variable$_, and doesn't yield a regex forsplitto use. All it returns is a number signifying how many substitutions occurred on whatever's in$_. Refer here for how that operator works: perldoc.perl.org/perlrequick.html#Search-and-replace – cikkle Jul 29 '10 at 20:38