与 ->EndsWith() 相反
字符串比较的相反是什么
thisString->EndsWith("String")
如果不是以...结尾
What is the opposite of the string comparison
thisString->EndsWith("String")
If it does not end with...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不太确定“相反”是什么意思,但有一个 StartsWith 方法。或者,如果您正在寻找它是否不以结尾,您可以直接否定 EndsWith 返回的值。希望这有帮助,并且我正确理解了这个问题。
Not exactly sure what you mean by "opposite", but there is a StartsWith method. Alternatively if you're looking for whether it doesn't end with you could just negate the value returned by EndsWith. Hope this helps, and that I'm understanding the question correctly.
我的朋友,你必须详细说明你的问题。
您正在寻找 :
^ 指字符串的开头
,或者
^ 您将使用它来检查字符串是否不以“string”结尾
You have to detail your question a bit, my friend.
Either you are looking for :
^ refers to the beginning of the string
or
^ you will use this to check if the string does not end with "string"
详细:
简洁:
Verbose:
Terse: