Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Extracting Strings - Special Cases

by Athanasius (Archbishop)
on Jan 07, 2013 at 13:35 UTC ( [id://1012032]=note: print w/replies, xml ) Need Help??


in reply to Extracting Strings - Special Cases

Hello rajkk04, and welcome to the Monastery!

i want to extract only 4 letters (alphanumeric) in the complete text.

Assuming this means: Match the first alphanumeric word of exactly 4 characters appearing between double quotes:

#! perl use strict; use warnings; my $s = '"perl"monks'; $s =~ m{ " (\w{4}) " }x; print $1, "\n" if $1;

Output:

23:31 >perl 475_SoPW.pl perl 23:31 >

See “Quantifiers” under perlre#Regular-Expressions.

Update: If you need to match strictly alphanumeric characters only (no punctuation characters), change \w in the regex to [A-Za-z0-9].

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-24 06:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found