与 ->EndsWith() 相反

发布于 2024-08-31 11:47:39 字数 79 浏览 5 评论 0原文

字符串比较的相反是什么

thisString->EndsWith("String")

如果不是以...结尾

What is the opposite of the string comparison

thisString->EndsWith("String")

If it does not end with...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

渔村楼浪 2024-09-07 11:47:39
!thisString->EndsWith("String");
!thisString->EndsWith("String");
鹊巢 2024-09-07 11:47:39

不太确定“相反”是什么意思,但有一个 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.

橘虞初梦 2024-09-07 11:47:39

我的朋友,你必须详细说明你的问题。

您正在寻找 :

StartsWith("string");

^ 指字符串的开头

,或者

!thisString->EndsWith("string");

^ 您将使用它来检查字符串是否不以“string”结尾

You have to detail your question a bit, my friend.

Either you are looking for :

StartsWith("string");

^ refers to the beginning of the string

or

!thisString->EndsWith("string");

^ you will use this to check if the string does not end with "string"

旧时光的容颜 2024-09-07 11:47:39

详细:

if (thisString->EndsWith("String") == false)
{
    // does not end with
}

简洁:

if (!thisString->EndsWith("String"))
{
    // ditto
}

Verbose:

if (thisString->EndsWith("String") == false)
{
    // does not end with
}

Terse:

if (!thisString->EndsWith("String"))
{
    // ditto
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文