高さと幅のimgタグが二重引用符で囲まれていない、かなりの数の古い投稿があります。例えば:
<img height=319 alt="" src="http://www.example.com/images/myexample.jpg" width=496>
高さと幅の数値を見つけ、それらを二重引用符で囲むことができるMySQLクエリの書き方はわかりません。
MySQLクエリが好まれますが、これが不可能であればおそらく誰かが私がこの問題を解決するかもしれないPHPスクリプトで使用できる正規表現を提案することができます。
あなたは単にこれを愛するつもりです
まず最初に、データがロードされたサンプル表を示します。
mysql> use junk
Database changed
mysql> drop table todd;
Query OK, 0 rows affected (0.01 sec)
mysql> create table todd (id int not null auto_increment,url VARCHAR(255),
-> primary key (id)) ENGINE=MyISAM;
Query OK, 0 rows affected (0.05 sec)
mysql> INSERT INTO todd (url) VALUES
-> ('<img height=319 alt="" src="http://www.example.com/images/myexample.jpg" width=496>'),
-> ('<img height=329 alt="" src="http://www.example.com/images/myexample.jpg" width=130>'),
-> ('<img height=339 alt="" src="http://www.example.com/images/myexample.jpg" width=206>'),
-> ('<img height=349 alt="" src="http://www.example.com/images/myexample.jpg" width=498>'),
-> ('<img height=359 alt="" src="http://www.example.com/images/myexample.jpg" width=499>');
Query OK, 5 rows affected (0.00 sec)
Records: 5 Duplicates: 0 Warnings: 0
mysql> select * from todd;
+----+-------------------------------------------------------------------------------------+
| id | url |
+----+-------------------------------------------------------------------------------------+
| 1 | <img height=319 alt="" src="http://www.example.com/images/myexample.jpg" width=496> |
| 2 | <img height=329 alt="" src="http://www.example.com/images/myexample.jpg" width=130> |
| 3 | <img height=339 alt="" src="http://www.example.com/images/myexample.jpg" width=206> |
| 4 | <img height=349 alt="" src="http://www.example.com/images/myexample.jpg" width=498> |
| 5 | <img height=359 alt="" src="http://www.example.com/images/myexample.jpg" width=499> |
+----+-------------------------------------------------------------------------------------+
5 rows in set (0.00 sec)
mysql>
2つのクエリを順番に実行する必要があります。
これは数の高さを二重引用符で囲みます
UPDATE
(select id,CONCAT(bftoken,token,'"',num,'"',substr(aftoken,num_length+1)) newurl
FROM (select id,token,
substr(b.url,1,a.hpos - 1) bftoken,
substr(b.url,a.hpos + length(a.token)) aftoken,
substr(b.url,a.hpos + length(a.token))+0 num,
length(substr(b.url,a.hpos + length(a.token))+0) num_length
from
(select id,token,LOCATE(token,url) hpos
from todd,(select 'height=' token) w
WHERE LOCATE(CONCAT(token,'"'),url)=0) A
INNER JOIN todd B USING (id)) AA) AAA
INNER JOIN todd BBB USING (id)
SET BBB.url = AAA.newurl;
これは数の幅を二重引用符で囲みます
UPDATE
(select id,CONCAT(bftoken,token,'"',num,'"',substr(aftoken,num_length+1)) newurl
FROM (select id,token,
substr(b.url,1,a.hpos - 1) bftoken,
substr(b.url,a.hpos + length(a.token)) aftoken,
substr(b.url,a.hpos + length(a.token))+0 num,
length(substr(b.url,a.hpos + length(a.token))+0) num_length
from
(select id,token,LOCATE(token,url) hpos
from todd,(select 'width=' token) w
WHERE LOCATE(CONCAT(token,'"'),url)=0) A
INNER JOIN todd B USING (id)) AA) AAA
INNER JOIN todd BBB USING (id)
SET BBB.url = AAA.newurl;
これらを実行してテーブルの内容を表示したときに何が起こるかを見てください。
mysql> UPDATE
-> (select id,CONCAT(bftoken,token,'"',num,'"',substr(aftoken,num_length+1)) newurl
-> FROM (select id,token,
-> substr(b.url,1,a.hpos - 1) bftoken,
-> substr(b.url,a.hpos + length(a.token)) aftoken,
-> substr(b.url,a.hpos + length(a.token))+0 num,
-> length(substr(b.url,a.hpos + length(a.token))+0) num_length
-> from
-> (select id,token,LOCATE(token,url) hpos
-> from todd,(select 'height=' token) w
-> WHERE LOCATE(CONCAT(token,'"'),url)=0) A
-> INNER JOIN todd B USING (id)) AA) AAA
-> INNER JOIN todd BBB USING (id)
-> SET BBB.url = AAA.newurl;
Query OK, 5 rows affected (0.02 sec)
Rows matched: 5 Changed: 5 Warnings: 0
mysql> UPDATE
-> (select id,CONCAT(bftoken,token,'"',num,'"',substr(aftoken,num_length+1)) newurl
-> FROM (select id,token,
-> substr(b.url,1,a.hpos - 1) bftoken,
-> substr(b.url,a.hpos + length(a.token)) aftoken,
-> substr(b.url,a.hpos + length(a.token))+0 num,
-> length(substr(b.url,a.hpos + length(a.token))+0) num_length
-> from
-> (select id,token,LOCATE(token,url) hpos
-> from todd,(select 'width=' token) w
-> WHERE LOCATE(CONCAT(token,'"'),url)=0) A
-> INNER JOIN todd B USING (id)) AA) AAA
-> INNER JOIN todd BBB USING (id)
-> SET BBB.url = AAA.newurl;
Query OK, 5 rows affected (0.02 sec)
Rows matched: 5 Changed: 5 Warnings: 0
mysql> select * from todd;
+----+-----------------------------------------------------------------------------------------+
| id | url |
+----+-----------------------------------------------------------------------------------------+
| 1 | <img height="319" alt="" src="http://www.example.com/images/myexample.jpg" width="496"> |
| 2 | <img height="329" alt="" src="http://www.example.com/images/myexample.jpg" width="130"> |
| 3 | <img height="339" alt="" src="http://www.example.com/images/myexample.jpg" width="206"> |
| 4 | <img height="349" alt="" src="http://www.example.com/images/myexample.jpg" width="498"> |
| 5 | <img height="359" alt="" src="http://www.example.com/images/myexample.jpg" width="499"> |
+----+-----------------------------------------------------------------------------------------+
5 rows in set (0.01 sec)
mysql> select * from todd;
試してみる !!!
警告
これは10のためのあなたの始めです...
MySQLクエリでREGEXP演算子を使用してから、返された結果を更新することができます。
必要な正規表現は次のようになります。
width=([0-9]*)
ですから、あなたはクエリが次のようになるでしょう:
SELECT * FROM table WHERE column REGEXP "width=([0-9]*)"
私が用語「何か」を使っているのは、データベースでこれをテストできないからです。
あなたのためのさらなる読み物:
http://www.regular-expressions.info/mysql.html
お役に立てれば。