up vote 0 down vote favorite
share [g+] share [fb]

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";
                }
link|improve this question

Tag this question with the language that you use and you'll get more responses. – John Berryman Jul 29 '10 at 20:11
looks like perl to me. ;) – relet Jul 29 '10 at 20:12
Yeah ... I don't know Perl, but this looks like Perl to me. Probably a typo, then. ;P – strager Jul 29 '10 at 20:12
4  
It's been alluded to, but no one's quite spelled it out for you yet: s/ {2,}//g is a substitution operation on the default variable $_, and doesn't yield a regex for split to 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
feedback

4 Answers

up vote 7 down vote accepted
@cellMessage = split(/ {2,}/, $message);
link|improve this answer
Awesome that worked great – shinjuo Jul 29 '10 at 20:19
1  
But it is not really whitespace, only spaces. \s will also give you tabs: @cellMessage = split(/\s{2,}/, $message); – Erik Jul 29 '10 at 20:21
Another small refinement would be to use + instead of {2,}. The + means exactly that, "at least one of": split(/\s+/, $message); – Philippe A. Jul 29 '10 at 22:29
@Philippe A., he said he wanted to split on 2 or more spaces. That would be /\s\s+/, which is only 1 less character than /\s{2,}/. They both mean the same thing. – cjm Jul 30 '10 at 17:50
feedback

Keeping the syntax you used in your example I would recommend this:

@cellMessage = split(/\s{2,}/, $message);
                foreach(@cellMessage){
                    print "$_ \n";
                }

because you will match any whitespace character (tabs, spaces, etc...). The problem with your original code was that the split instruction is looking for a pattern and the regex you provided was resulting in the empty string //, which splits $message into individual characters.

link|improve this answer
feedback
use strict;
use warnings;
use Data::Dumper;

#                  1    22     333
my $message = 'this that  other   555';
my @cellMessage = split /\s{2,}/, $message;
print Dumper(\@cellMessage);

__END__

$VAR1 = [
          'this that',
          'other',
          '555'
        ];
link|improve this answer
feedback

Try this one: \b(\s{2,})\b

That should get you anything with multiple spaces between word boundries.

link|improve this answer
Shinjuo's split syntax was wrong. It has nothing to do with word boundaries. Erik has the right answer. – jmz Jul 29 '10 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.