Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が次のようなものを書くことができる方法はありますか
select $1 from tbl where url regexp '/user/(\d+)'
長い間価値を得る?
\でエスケープする必要がありますが、mysql regexでサブグループをキャッチできないため、ここでは意味がありません\\。()
\
\\
()
select SUBSTRING(url, 6) from tbl where url regexp '^/user/\\d+'
編集:
select SUBSTRING(url, 6) from tbl where url regexp '^/user/[0-9]+'
(mysql regexはサポートしていません\d)
\d