【发布时间】:2020-04-30 11:11:13
【问题描述】:
我想使用 Match 以便它可以找到也包含空白的模式。 例如- a =“这就是我”。 我想搜索“这是” 我能做什么?
【问题讨论】:
标签: openedge progress-4gl
我想使用 Match 以便它可以找到也包含空白的模式。 例如- a =“这就是我”。 我想搜索“这是” 我能做什么?
【问题讨论】:
标签: openedge progress-4gl
以下是正确的:
"this is me" BEGINS "this is"
"this is me" MATCHES "*this is*"
当它是在单词索引中使用的数据库字段的内容时
tablename.fieldname CONTAINS "this is"
【讨论】: