Jump to content

Find and Change


Knuckles

Recommended Posts

Hello PHPFreaks,

 

Im looking to make a script that can find sertend text or numbers in mysql database and can change it. The only problem is that the database also contains same text and numbers that dont need to be changed. So only for example within  [39,10] the , has to be changed into a . and only between the [ ]

 

Anyone got script for this or can help me make one cause im new to php.

 

 

Link to comment
https://forums.phpfreaks.com/topic/230531-find-and-change/
Share on other sites

UPDATE table_name SET field = replace(field, '[39,10]', '.')

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_replace

 

Can this also be:

 

UPDATE table_name SET field = replace(field, '[,]', '.')

 

Cause the numbers are different for every product, so something need to allow the number to change. Would this code be good then or do i do something wrong?

Link to comment
https://forums.phpfreaks.com/topic/230531-find-and-change/#findComment-1190200
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.