mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
9 lines
183 B
Go
9 lines
183 B
Go
package sqltil
|
|
|
|
import "strings"
|
|
|
|
//转义like语法的%_符号
|
|
func EscapeLike(keyword string) string {
|
|
return strings.Replace(strings.Replace(keyword,"_","\\_",-1),"%","\\%",-1)
|
|
}
|