我需要强制输入满足以下模式的信息:
例一:
([email protected];type!=test;schedule==false),([email protected];type==unit)
例二:
([email protected],schedule==false);(value<=1)
尝试做这样的事情:
[(][a-zA-Z0-9_](==|>|<|>=|<=|!=)[\w][)]
但没有成功.. .
我真的可以使用正则表达式来做吗?
试试这个:
/^(\((.*?([=!><]=|>|<).*?([;,]|\))*)(,|$))*/i