我正在谷歌表单中创建调查,无法找到针对密码输入的任何正则表达式。
用户被问到一个问题,可以在两个文本字段中输入2个密码。
我需要包含4位数字的正则表达式,数字从0到9。
例:
Textbox1:1234
Textbox2:4321
有什么想法吗?
答案 0 :(得分:0)
[0-9] {4}
这应该是你的正则表达式。
function validate() {
var textField = document.getElementById("textbox1").value;
var regex = /[0-9]{4}/g;
alert("Valid input: " + regex.test(textField));
}
<input type="text" id="textbox1">
<input type="button" onclick="validate()" value="Validate">
答案 1 :(得分:0)
尝试-- The usual fold
fold :: Bin -> (t -> t) -> (t -> t) -> t -> t
fold (O bin) zero one end = zero (fold bin zero one end)
fold (I bin) zero one end = one (fold bin zero one end)
fold E zero one end = end
-- Successor of `Bin` - `O(log(N))`
suc :: Bin -> Bin
suc (O bin) = I bin
suc (I bin) = O (suc bin)
suc E = E
-- Calls a function `a` times
times :: Bin -> (t -> t) -> t -> t
times a f x = fold a zero one end f where
one bin fs = fs (bin (fs . fs))
zero bin fs = bin (fs . fs)
end fs = x
-- Adds 2 binary numbers
add :: Bin -> Bin -> Bin
add a b = (a `times` suc) b
-- 1001 + 1000 = 0101
main = print $ add (I (O (O (I E)))) (I (O (O (O E))))
同时将\d{4}
设置为Regular Expression