gpt4 book ai didi

java - 如何创建接受特定字符的正则表达式?

转载 作者:行者123 更新时间:2023-12-02 10:14:25 24 4
gpt4 key购买 nike

我有这个正则表达式:

^[a-zA-Z0-9_@.#$%&'*+-/=?^`{|}~!(),:;<>[-\]]{8,}$

我需要一个正则表达式来接受最小单词长度为 8、字母(大写和小写)、数字和这些字符:

!#$%&'*+-/=?^_`{|}~"(),:;<>@[]

我测试时它有效 here .

这就是我在 Java Android 中使用它的方式。

public static final String regex = "^[a-zA-Z0-9_@.#$%&'*+-/=?^`{|}~!(),:;<>[-\\]]{8,}$";

这是我收到的错误。

java.util.regex.PatternSyntaxException: Missing closing bracket in character class near index 49
^[a-zA-Z0-9_@.#$%&'*+-/=?^`{|}~!(),:;<>[-\]]{8,}$

最佳答案

如果您只想测试给定的输入字符串是否与您的模式匹配,您可以直接使用 String#matches,例如

String regex = "[a-zA-Z0-9_@.#$%&'*+-/=?^`{|}~!(),:;<>\\[\\]-]{8,}";
String input = "Jon@Skeet#123";

if (input.matches(regex)) {
System.out.println("Found a match");
}
else {
System.out.println("No match");
}

如果您想解析较大的输入文本并识别此类匹配的单词,那么您可能需要使用正式的PatternMatcher。但是,仅根据您的问题,我认为没有必要这样做。

关于java - 如何创建接受特定字符的正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54779048/

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