Jump to content

[SOLVED] how to remove unwanted words/characters from database item


pixeltrace

Recommended Posts

hi,

 

i need help. currently i dump some data into our database from another database.

now, i found some wierd characters

 

at the end of each of those items.

and there are like 500 items in my database table which has those.

 

is there a way that i can remove it using mysql query to be run in mysql or phpmyadmin

something like

update * from table where field name item has  and replace it with just blank?

 

hope you could help me with this

 

thanks!

Link to comment
Share on other sites

I came up with this script.. because Im sure you don't want to hand pick through all the DB rows yourself... I've had the same prob before... I haven't tested this though.. but I believe it would work.

Be sure to replace the table/column names with your own

<?php
// Get all rows from your database that contain either à or Â
$sql = "SELECT * FROM your_table WHERE string_column REGEXP '^[.][ÃÂ][.]$'";
$result = mysql_query($sql) or die("1. ".mysql_error());

// Put them into an array
$row = mysql_fetch_array($result);

// Count how many rows there are
$total_rows = count($row);

// If there are more than 0 rows, then replace each instance of à or  with nothing.
if ($total_rows > 1)
{
   for ($i=0; $i<$total_rows; $i++)
   {
      $this_id = $row[$i]['id_column'];

      $newstring = str_replace("Ã","",$row[$i]['string_column']);
      $newstring = str_replace("Â","",$row[$i]['string_column']);

      mysql_query("UPDATE your_table SET string_column='".$newstring."' WHERE id_column=".$this_is."") or die("2. ".mysql_error());
   }

// Done..
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.