如何将 Int64 String.Format 转换为“混淆的”字符串(信用卡)C#?
假设我有一个 Int64
= 1234567890123456
(我们假设它是一个有效的数字),如何将其格式化为 1••••••••• •• 3456?
我尝试过 String.Format("{0:#••••••••••• ####}")
和 String.Format("{0: 0••••••••••• 0000}")
并且两者都生成 123456789012••••••••••• 3456
这是完全错误的击败了混淆数字的点......
我希望得到一些指导。提前致谢!
Say I have an Int64
= 1234567890123456
(and we assume its a valid number), how can I format it into 1••• •••• •••• 3456
?
I've tried String.Format("{0:#••• •••• •••• ####}")
and String.Format("{0:0••• •••• •••• 0000}")
and both of them produce 123456789012••• •••• •••• 3456
which is wrong and completely defeats the point of obfuscating the number...
I'd appreciate some guidance. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其转换为字符串并填充特定字符不是更容易吗?
类似的东西?
Wouldn't it be easier to just convert it to a string and fill in the specific chars?
something along those lines?