as3 将字符串转换为任意数字
我想使用字符串输入来播种数字生成器。什么函数最适合简单地将字符串转换为数字来执行此操作?
I want to seed a number generator using a string input. What function would be best for simply turning the string into a number to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好的方法是您创建一些简单的算法,以避免可能的黑客攻击。
一种方法是使用 charCodeAt() 添加每个字符的值,
此外,根据所需的安全性,您还可以尝试使用 MD5 或 SHA-1。
The best approach is some simple algorithm of your creation, to avoid possible hacks.
One method would be to add the value of each character using charCodeAt(),
Also, depending on the required security, you can also try using MD5 or SHA-1.
如果你保证输入将是一个数字,你可以简单地通过 Number("4") 将其从字符串转换为数字
IE。
If you're guaranteed that the input will be a number, you can simply cast it to a number from string through Number("4")
ie.