搜索带有下划线的字符串

huangapple go评论77阅读模式
英文:

search for string with underscore

问题

可以使用等号运算符来匹配包含下划线的区分大小写String 吗?

str1.trim() == "Aavik_aArjun"

还是应该使用正则表达式来进行这个简单的匹配,因为等号运算符不起作用?

英文:

Can I use the equals operator to match a case-sensitive String that contains underscore?

str1.trim() == "Aavik_aArjun" 

Or should I use a regex for this simple match as the equals operator is not working?

答案1

得分: 4

使用**.equals()**方法而不是==运算符来比较String(以及一般的对象),因为前者比较引用而不是字符串的实际内容。

英文:

For String (and objects in general) use the .equals() method and not the == operator, as the former compares the references and not the actual content of the Strings.

huangapple
  • 本文由 发表于 2020年8月26日 14:17:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/63591557.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定