Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: splitting punctuation in a text

by injunjoel (Priest)
on Aug 11, 2008 at 16:59 UTC ( [id://703696]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my @chunks = split /\b/, $line;
    
    print Dumper(\@chunks);
    
  2. or download this
    #need the grep to filter for truth! 
    #basically checking if 
    #the element is defined/filled-in/not-blank
    my @chunks = grep{$_} split /\b|\s/, $line;
    
  3. or download this
    #either this
    my @no_punct = $line =~ /(\w+)/g;
    #or this
    my @no_punct = grep{$_}split /\W|\s/, $line;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://703696]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2024-04-25 06:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found