如何检查字符串是否包含一组条件

时间:2012-05-07 08:32:13

标签: regex string list vim

我想检查一个字符串是否包含一组条件:

体育专业。

let myvar = '.....'  
if myvar doesn't contain:   

- 'cos'
- or 'sin'
- or 'tan'
- or 'log'
- or only contains of this: [0-9*/:-+<space>]
- or ... etc 

give an error message.

我想将所有条件放在一个列表中并检查字符串是否正确 有这些条件之一 如果字符串没有这些条件之一,请提供错误消息。

有人可以帮我找到正确的正则表达式吗?

2 个答案:

答案 0 :(得分:3)

我建议使用match()函数

function! Test(s)
    if match(a:s, '\<\(cos\|sin\|tan\|log\)\>') < 0
        echo "functions not matched"
    endif
    if match(a:s, '^[0-9*\\\/:+\- ]*$') >= 0
        echo "only numerics and operators"
    endif
endf

希望这个使用样本有所帮助。用

测试
:call Test('123 * 38 - 04 : 7 + 1269')
:call Test('biological')
:call Test('log(x)')

答案 1 :(得分:2)

您可以查看相反的内容:

^.*\(cos\|sin\|tan\|log\|[^0-9*\/:+ -]\)
如果字符串中至少有一个cossin等字符或至少一个字符0-9*等,则

匹配

因此,如果字符串只包含字符0-9*\/:+ -和/或不包含您提到的任何关键字,则无法匹配。