Objective-c 正则表达式格式信用卡

发布于 2024-10-25 19:16:07 字数 99 浏览 1 评论 0原文

我有一个卡号列表 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 技术交流群。

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

发布评论

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

评论(1

桜花祭 2024-11-01 19:16:07

以下是如何使用 Ruby 做到这一点(经过测试):

s = '1234123412341234'
s.sub!(/(\d{4})(\d{4})(\d{4})(\d{4})/, '\1 \2 \3 \4')
print s   # => "1234 1234 1234 1234"

我不是 Obj-C 花花公子,但是使用 RegexKit 或 RegexKit Lite,代码应该是(未经测试)类似:

[string stringByMatching:@"(\d{4})(\d{4})(\d{4})(\d{4})" replace:1 withString:@"$1 $2 $3 $4"]

更多阅读:

Here's how to do it with Ruby (tested):

s = '1234123412341234'
s.sub!(/(\d{4})(\d{4})(\d{4})(\d{4})/, '\1 \2 \3 \4')
print s   # => "1234 1234 1234 1234"

I'm no Obj-C dude, but with RegexKit or RegexKit Lite, the code should be (untested) something like:

[string stringByMatching:@"(\d{4})(\d{4})(\d{4})(\d{4})" replace:1 withString:@"$1 $2 $3 $4"]

Some more reading:

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