#取出字符串中出现2次的字符串,使用count方法统计def two_zifuchuan(str): s=set() for i in str: if str.count(i)==2: s.add(i) return s #取出字符串中出现2次的字符串,使用字典统计 def two_occur(str): s={} for i in str: if i in s.keys(): s[i]+=1 else: s[i]=1 return [i for i in s if s[i]==2] str="
我们知道在正则中如果要取出一串字符串中连续的字符可以使用?.+.*.{}等元字符 比如:"432efwklej5431"中我需要取出"efwklej"只需要[A-Za-z]+就可以实现效果. public class r { public static void main(String[] args) { String s = "432efwklej5431"; String rex = "[A-Za-z]+"; Patter