Objective-c 正则表达式格式信用卡
我有一个卡号列表 1234123412341234,但我需要一个正则表达式,用“123 123 123 123”等空格对其进行格式化。
所以每 4 个字符添加一个空格。
I have a list of card numbers 1234123412341234 but I need a regex that formats it with whitespaces like "123 123 123 123".
So every 4 character add a whitespace.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是如何使用 Ruby 做到这一点(经过测试):
我不是 Obj-C 花花公子,但是使用 RegexKit 或 RegexKit Lite,代码应该是(未经测试)类似:
更多阅读:
Here's how to do it with Ruby (tested):
I'm no Obj-C dude, but with RegexKit or RegexKit Lite, the code should be (untested) something like:
Some more reading: