in reply to Re: uri_unescape not correct
in thread uri_unescape not correct
and it returned:#!/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;
if it were a visual thing wouldnt they both be wrong?Expecting: "Celades"+"Aspectos+clínicos+*+*+menopausia" Returning: "Celades"+"Aspectos+clÃnicos+*+*+menopausia"
|
|---|