sure, you can use the str_replace function. here's an example
$my_str = "hello. isn\\\'t it annoying to see \\\' in my file?!";
// now my string literally is:
// "hello. isn\'t it annoying to see \' in my file"
//
// i assume you'd like to turn a \' into just a '
//
// you can do this with one call to str_replace
$my_str = str_replace("\\\'", "\'", $my_str);
// or if you want to take out the \' altogether, use
// this line instead
$my_str = str_replace("\\\'", "", $my_str);
hope this helps,
--------
awulf :.
--------
bus:
http://www.inversiondesigns.com
me :
http://awulf.inversiondesigns.com