Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table with ~500k rows; varchar(255) UTF8 column filename contains a file name;

I'm trying to strip out various strange characters out of the filename - thought I'd use a character class: [^a-zA-Z0-9()_ .\-]

Now, is there a function in MySQL that lets you replace through a regular expression? I'm looking for a similar functionality to REPLACE() function - simplified example follows:

SELECT REPLACE('stackowerflow', 'ower', 'over');

Output: "stackoverflow"

/* does something like this exist? */
SELECT X_REG_REPLACE('Stackoverflow','/[A-Zf]/','-'); 

Output: "-tackover-low"

I know about REGEXP/RLIKE, but those only check if there is a match, not what the match is.

(I could do a "SELECT pkey_id,filename FROM foo WHERE filename RLIKE '[^a-zA-Z0-9()_ .\-]'" from a PHP script, do a preg_replace and then "UPDATE foo ... WHERE pkey_id=...", but that looks like a last-resort slow & ugly hack)

share|improve this question

6 Answers

up vote 49 down vote accepted

No.

But you could use a udf.

share|improve this answer
1  
REGEXP_REPLACE as a User Defined Function? Looks promising, will look into it. Thanks! – Piskvor Jun 12 '09 at 15:34
Mysql does not have that feature built-in. I'm told that Oracle has that (no help for you though) – Lathan Jul 26 '10 at 14:08
4  
Unfortunately mysql-udf-regexp doesn't seem to have support for multibyte characters. regexp_replace('äöõü', 'ä', '') returns a long numeric string instead of real text. – lkraav Feb 20 '12 at 1:44
@lkraav Really? that thing sounds like a security leak since that "long numeric string" looks like some buffer overrun. – Earth Engine Mar 1 at 0:48
1  
MySQL itself does not support multi-byte characters with its RegEx features. – Brad Mar 20 at 20:53
show 1 more comment

My brute force method to get this to work was just:

  1. Dump the table - mysqldump -u user -p database table > dump.sql
  2. Find and replace a couple patterns - find /path/to/dump.sql -type f -exec sed -i 's/old_string/new_string/g' {} \;, There are obviously other perl regeular expressions you could perform on the file as well.
  3. Import the table - mysqlimport -u user -p database table < dump.sql
share|improve this answer
2  
Okay, that should work, too; I didn't consider an offline replace. Nice out-of-the-box thinking there! – Piskvor Feb 27 '12 at 5:33
5  
Seems strange to me that you'd use find like that, I would shorten the command to sed -i 's/old_string/new_string/g' /path/to/dump.sql – speshak Mar 23 '12 at 16:17
can work if the the replace can't broke the SQL itself. – Moshe L May 4 '12 at 9:28

I recently wrote a MySQL function to replace strings using regular expressions. You could find my post at the following location:

http://techras.wordpress.com/2011/06/02/regex-replace-for-mysql/

share|improve this answer
1  
It also only works on single characters.. – Jay Taylor Jan 5 '12 at 21:24
upvoted just because got downvoted for stupid reasons. – anttir Jan 11 '12 at 11:02
6  
I'll just reinforce the above point: this function replaces characters that match a single-character expression. It says above that it is used "to repalce strings using regular expressions", and that can be a little misleading. It does its job, but it's not the job being asked for. (Not a complaint - it is just to save leading people down the wrong path) – Jason Feb 6 '12 at 23:15

We currently use the following:

https://github.com/mysqludf/lib_mysqludf_preg

share|improve this answer
3  
Also has "no support for multibyte characters" in known issues. Same situation as with mysql-udf-regexp. – lkraav Feb 20 '12 at 1:44
2  
Broken link. Please update your post. – Brad Mar 20 at 20:55
I've updated it with a working link. – Deefour Mar 26 at 11:14

You 'can' do it ... but it's not very wise ... this is about as daring as I'll try ... as far as full RegEx support your much better off using perl or the like.

UPDATE db.tbl
SET column = 
CASE 
WHEN column REGEXP '[[:<:]]WORD_TO_REPLACE[[:>:]]' 
THEN REPLACE(column,'WORD_TO_REPLACE','REPLACEMENT')
END 
WHERE column REGEXP '[[:<:]]WORD_TO_REPLACE[[:>:]]'
share|improve this answer
No, that won't work. Imagine your column contains 'asdfWORD_TO_REPLACE WORD_TO_REPLACE". Your method would result in 'asdfREPLACEMENT REPLACEMENT" where the correct answer would be "asdfWORD_TO_REPLACE REPLACEMENT". – Ryan Shillington Oct 3 '12 at 17:14
@Ryan ... that's exactly why I stated that it wasn't very wise ... in the use case you provide this would most definitely fail. In short it's a bad idea to use 'regex-like' structure. Even worse ... if you drop the where clause all your values will be NULL ... – Eddie B Oct 3 '12 at 17:21
Actually Ryan in this case you're incorrect as the markers will only find matches for the zero-length word 'boundaries' so only words with boundaries before and after the word would match ... It's still a bad idea though ... – Eddie B Oct 10 '12 at 23:33
@downvoter Care to explain? – Eddie B Jan 16 at 5:50
Err ... I'm losing some points here ... Please explain why I'm getting downvoted when I clearly stated this as "NOT VERY WISE" – Eddie B Mar 5 at 1:35
show 2 more comments

Replace

a~b}c{d`e_f^g\h[i?j=k;l.m-n,o*p(q&r$s"t u|v]x@y>z<0:1+2)3\'4%5#6!7\r8\f9\v0\naz\t09\b

To

abcdeghijklmnopqrstuxyz01234567890az09

MySQL - Regular Expressions & REPLACE

share|improve this answer
4  
That is not a regular expression; moreover, I fail to see the use case for that (except stripping out an arbitrary set of characters while keeping others). – Piskvor Jun 25 '12 at 18:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.