gpt4 book ai didi

java - android中的正则表达式用于不带空格的密码

转载 作者:行者123 更新时间:2023-12-01 16:33:14 25 4
gpt4 key购买 nike

我在 android 中有一个 EditText 字段。密码应包含最少 4 个字符、最多 20 个字符,开头或中间不得有空格。不允许使用示例 BlankspaceRaghu 和 RaghublankspaceRaghu。

Pass= password.getText().toString();    

Pattern p= Pattern.compile("[^\\S]+[a-z,A-Z]+");

Matcher m = p.matcher(Pass);

最佳答案

Pass= mEditTextPassword.getText().toString();
Pattern p = Pattern.compile("^[A-Za-z0-9]{4,20}$");
Matcher m = p.matcher(Pass);

关于java - android中的正则表达式用于不带空格的密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12283231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com