比较忽略主角
我收到“0000A”、“00000000A”、“0A”形式的字符串。它们可以有多个前导零,也可以没有前导零。我希望它们评估为相等,忽略前导零。最好的方法是什么?
I receive strings of the form "0000A", "00000000A", "0A". They can have many or no leading zeros. I want them to evaluate as equal ignoring the leading zeros. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要扩展@matt b的建议,你可以这样做
To expand on @matt b's suggestion, you can do
为了避免正则表达式引擎进行缓冲区复制,您可以使用
regionMatches
检查一个字符串是否是另一个字符串的后缀,然后检查较长字符串的前缀是否全为零。To avoid buffer copies by a regex engine, you can check whether one string is a suffix of the other using
regionMatches
and then check that the prefix of the longer is all zeroes.