string模糊匹配*代表多个
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string模糊匹配*代表多个相关的知识,希望对你有一定的参考价值。
参考技术A 匹配个数为2。源字符串“You may be out of my sight, but never out of my mind.”中查找“my”的个数。
mybatis模糊匹配和正则
模糊匹配
<select id="findByName" parameterType="string" resultType="Student">
select * from student where student.name like "%"#{name}"%";
<select>
正则
<select id="findByName" parameterType="string" resultType="Student">
select * from student where student.name REGEXP "^["#{name}"]"
</select>
本文出自 “matengbing” 博客,请务必保留此出处http://matengbing.blog.51cto.com/11395502/1869955
以上是关于string模糊匹配*代表多个的主要内容,如果未能解决你的问题,请参考以下文章