Haxe——比较两个字符串忽略大小写?

发布于 2024-09-25 13:17:57 字数 100 浏览 3 评论 0原文

我正在为 Haxe 开发一个字符串到布尔的解析函数(不知何故,开发人员到目前为止还没有 >.<),我认为检查字符串的最佳方法是忽略大小写。我不确定该怎么做,有人可以帮助我吗?

I'm working on a string-to-bool parsing function for Haxe (somehow the devs got by until now without one >.<) and i figured the best way to check the string would be ignoring case. I'm not sure how to do that though, can someone help me?

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

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

发布评论

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

评论(2

心作怪 2024-10-02 13:17:57

在 std 中没有这样的函数,但您可以轻松添加自己的函数:

public static function equalsCI(a : String, b : String) return a.toLowerCase() == b.toLowerCase();

In std there is not such a function but you can easily add your own:

public static function equalsCI(a : String, b : String) return a.toLowerCase() == b.toLowerCase();

ま昔日黯然 2024-10-02 13:17:57

以防万一有人需要复制和粘贴。

function StringToBool(a:Dynamic):Bool{
 var res:Bool = (cast (a, String).toLowerCase() == "true")?true:false;
return res;
}

Just incase anybody needs copy and paste.

function StringToBool(a:Dynamic):Bool{
 var res:Bool = (cast (a, String).toLowerCase() == "true")?true:false;
return res;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文