Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: quotes substitution

by citromatik (Curate)
on Jun 29, 2009 at 06:23 UTC ( [id://775563]=note: print w/replies, xml ) Need Help??


in reply to quotes substitution

It is not clear for me what you want to accomplish, but generally use HTML::Entities to process html entities:

use strict; use warnings; use HTML::Entities; my $line="” 3”"; decode_entities ($line);

If this module is of no help, please, try to give a step backwards and explain the kind of conversions you want to be done

Update: A closer look at your code reveals that you are not using alternation correctly: [] in a regexp is a character class, but probably you are wanting () instead (see perlretut and perlre):

$line="” 3 ”"; $line =~ s/(?:&|&amp\;)rdquo;/'/g; print "$line\n";

That prints:

' 3 '

citromatik

Replies are listed 'Best First'.
Re^2: quotes substitution
by hnd (Scribe) on Jun 29, 2009 at 07:52 UTC
    hey there......
    that regex does not work properly (dont be offended)...... i tried it but the output is

    "'; 3'"

    so i think..... there should be one more useless line like

    $line=~s/;//g; #no need of /g as such

      $ cat 775558.pl use strict; use warnings; my $line="” 3”"; $line =~ s/(?:&|&amp\;)rdquo;/'/g; print "$line\n"; $ perl 775558.pl ' 3'

      citromatik

        thnx........ i got my mistake...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 20:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found