我需要开发一个代码来检查String是否有任何Semicolon。 charector可以有任何风格。
Charector : ;
Ascii : 59
HTML Entity (decimal) : ;
HTML Entity (hex) : ;
Alt : 059
Alt : 59
UTF-8 (hex) : 0x3B (3b)
UTF-8 (binary) : 00111011
UTF-16 (hex) : 0x003B (003b)
UTF-16 (decimal) : 59
UTF-32 (hex) : 0x0000003B (3b)
UTF-32 (decimal) : 59
etc...
Is there a proper way with regular expression , where I can check all flavors of semicolon.
答案 0 :(得分:1)
字符串没有编码。因此,您只需查看myString.contains(";")
答案 1 :(得分:0)
怎么样?
if(yourString.contains(";")){
// Do things
}
为什么只需要一个正则表达式来查看它是否包含一个字符?
答案 2 :(得分:0)
如果您需要检查分号,您只需要:
int pos = yourString.indexOf(";");
if (pos != -1) {
//...semicolon found at position pos
}
你用“分号的味道”实际上是什么意思?