简单的数据屏蔽算法
有没有一种简单的算法可以将数值转换为字母数字 并可靠地将其转换回相同的数字?
例如,12345
转换为 00A3DF
,然后再转换回 12345
。
Is there a simple algorithm where by I can convert a numeric value to alphanumeric
and reliably convert it back to the same number?
For example, 12345
converts to 00A3DF
and back to 12345
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设当你说字母数字时你指的是十六进制。这已经得到回答:
如何在十六进制之间转换数字C# 中的小数和小数?
C# 将整数转换为十六进制,然后再转换回来
I assume when you say alphanumeric you mean hexadecimal. This has already been answered:
How to convert numbers between hexadecimal and decimal in C#?
C# convert integer to hex and back again