I want to strip this character: Â
I'm not quite sure how to do this. Any help would be great!
Want to remove Â
Moderator: General Moderators
- prometheuzz
- Forum Regular
- Posts: 779
- Joined: Fri Apr 04, 2008 5:51 am
Re: Want to remove Â
ecom wrote:I want to strip this character: Â
I'm not quite sure how to do this. Any help would be great!
Code: Select all
$str = 'aaÂaa';
$str = preg_replace('/Â/', '', str);Re: Want to remove Â
Or even str_replace() which is slightly faster, I guess.