http://qs321.pair.com?node_id=607767


in reply to uri_unescape not correct

That code works properly on my computer, it is probably just a visualization effect; my console is UTF-8 and shows the proper accented letters, ie ì

Ciao, Valerio

Replies are listed 'Best First'.
Re^2: uri_unescape not correct
by rsiedl (Friar) on Apr 02, 2007 at 07:40 UTC
    i'm not so sure. i modified my code to:
    #!/usr/bin/perl use strict; use warnings; use URI::Escape; my $terms = "%22Celades%22+%22Aspectos+cl%C3%ADnicos+*+*+menopausia%22 +"; print "Expecting: \"Celades\"+\"Aspectos+clínicos+*+*+menopausia\"\n"; print "Returning: ",uri_unescape($terms),"\n"; exit;
    and it returned:
    Expecting: "Celades"+"Aspectos+clínicos+*+*+menopausia" Returning: "Celades"+"Aspectos+clínicos+*+*+menopausia"
    if it were a visual thing wouldnt they both be wrong?

    perhaps it is to do with the version of URI::Escape? mine is 3.28, yours?