html - How to convert text with things like %C3%A0 -
i have many list of names things %c3%a0 believe stands apostrophe.
m%c3%a0rius torres should marius torres.
but problems there many different kinds of these , cannot change them manually anymore. there 13,000 unique names.
how can convert correct names in excel?
as reference, queried many names in wikipedia database. here link
the names have been url encoded. done included in url. example, if try search " it's " on google, browser goes address https://www.google.com.au/search?hl=en&q=it%27s. can see, " it's " has been changed " it%27s ".
all need in php undo put string through urldecode() function. you'd following:
$string = "m%c3%a0rius torres";
$decoded = urldecode($string);
echo $decoded;
that should give decoded string. read more urldecode() function @ http://au1.php.net/urldecode.
Comments
Post a Comment