I have a very trivial problem with str_replace.
I have a string with the En Dash character ( - ) like this:
I want to remove - the dash
The html output is
I want to remove the – the dash
I want to do this:
$new_string = str_replace ('-','',$string);
I've tried to parse the string with html_entity_decode, to parse the character to remove with htmlspecialchars,but without any results.
What I'm doing wrong?
-EDIT- This is the full code of my script:
$title = 'Super Mario Galaxy 2 - Debut Trailer'; // Fetched from the DB, in the DB the character is - (minus) not –
$new_title = str_replace(' - ', '', $title);
$new_title = str_replace(" - ", '', $title);
$new_title = str_replace(html_entity_decode('–'),'',$title);
No one works. Basically the problem is that in the DB the dashes are stored as "minus" (I enter the value with the minus key) but for a strange reason the output is &ndash ;
I'm running on Wordpress and the charset is UTF-8, the same for the DB collation.
Try this:
Or:
It is basically same as:
This was my solution for an invalid ndash:
Only this solution worked for me:
try something like this:
My guess is it's not really an ndash, but a very similar character. I'd suggest pulling the byte values of each character in the string to see what it looks like:
That'll convert the string into the individual byte encodings (turn it into a hex string like
48 65 6C 6C 6F
(Hello
). Check to see the dash in both cases is in fact the same character. If you see "2D" where the dash is, that's a literal minus sign... If you see the three byte sequenceE2 80 93
, that's–
. Anything else means a different character...EDIT: And if you see
26 6E 64 61 73 68 3B
that mens a literal–
, so you'd need to dostr_replace('–', '', $str);
i've managed to do this by calling
remove_filter( 'the_title', 'wptexturize' );
in functions.php an then you perform astr_replace
or whatever by "-" sign;To anyone who has tried all of the above but still having no joy then this worked for me (from a WordPress
get_the_title()
function)