Haxe——比较两个字符串忽略大小写?
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 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();
以防万一有人需要复制和粘贴。
Just incase anybody needs copy and paste.