PHP
·
发表于 5年以前
·
阅读量:8290
此代码段可用于查找字符串中的所有唯一字符。
string = "abcbcabdb"
unique = set(string)
new_string = ''.join(unique)
print(new_string) # abcd