如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/** * 判断字符串是否包含重复字符 * @param str * @return */ public static boolean containrepeatchar(string str){ if (str== null ||str.isempty()){ return false ; } char [] elements=str.tochararray(); for ( char e:elements){ if (str.indexof(e)!=str.lastindexof(e)){ return true ; } } return false ; } |
以上这篇java 判断字符串中是否有重复字符的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/hujinyuan357/article/details/60571849