我想要一个正则表达式,它匹配带有字母a-j/A-J
甚至字符&|()
的字符组合的字符串。
我有以下示例中的字符串:
(((B&C)&E)|F)|A|D
A&B&C|D|F&E
A|D|(E|(B&(F&C)))
字符串中可接受的有效字符是字母a-j
和A-J
。其他可接受的字符为&|()
。
我必须使用正则表达式来评估字符串,如果它只包含可接受的字符
答案 0 :(得分:0)
像这样的人:$.fn.onTypeFinished = function (func) {
$(this).bind("keypress", onKeyPress)
function onKeyPress() {
setTimeout(onTimeOut, 500);
}
function onTimeOut() {
func.apply();
}
return this;
};
$(".user-input").onTypeFinished(function () {
var ntabindex = parseFloat($(this.element).attr('tabindex'));
ntabindex++;
$('input[tabindex=' + ntabindex + ']').focus();
});