gpt4 book ai didi

java - java中如何检查字符串是否具有全角字符

转载 作者:行者123 更新时间:2023-12-01 19:46:54 26 4
gpt4 key购买 nike

有人可以建议我如何检查 String 中是否包含 Java 中的全角字符吗?全角字符是特殊字符。

字符串中的全角字符:

abc@gmail.com

字符串中的半角字符:

abc@gmail.com

最佳答案

我不确定您是在寻找其中一个还是全部,因此以下是两者的函数:

public static boolean isAllFullWidth(String str) {
for (char c : str.toCharArray())
if ((c & 0xff00) != 0xff00)
return false;
return true;
}

public static boolean areAnyFullWidth(String str) {
for (char c : str.toCharArray())
if ((c & 0xff00) == 0xff00)
return true;
return false;
}

至于你的半角'.'和可能的'_'。首先将它们删除并进行替换:

String str="abc@gmail.com";

if (isAllFullWidth(str.replaceAll("[._]","")))
//then apart from . and _, they are all full width

正则表达式

或者,如果您想使用正则表达式进行测试,那么这是全角的实际字符范围:

[\uFF01-\uFF5E]

所以该方法看起来像:

public static boolean isAllFullWidth(String str) {
return str.matches("[\\uff01-\\uff5E]*");
}

您可以向其中添加其他字符,因此无需删除它们:

public static boolean isValidFullWidthEmail(String str) {
return str.matches("[\\uff01-\\uff5E._]*");
}

关于java - java中如何检查字符串是否具有全角字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29508932/

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