as3 将字符串转换为任意数字

发布于 2024-10-21 00:05:59 字数 51 浏览 4 评论 0原文

我想使用字符串输入来播种数字生成器。什么函数最适合简单地将字符串转换为数字来执行此操作?

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 技术交流群。

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

发布评论

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

评论(2

微暖i 2024-10-28 00:05:59

最好的方法是您创建一些简单的算法,以避免可能的黑客攻击。
一种方法是使用 charCodeAt() 添加每个字符的值,

function generateSeed(input:String):Number {
    var r:Number = 0;
    for (var i:int = 0; i < input.length; i++) {
        r += input.charCodeAt(i);
    }
    return r;
}

此外,根据所需的安全性,您还可以尝试使用 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(),

function generateSeed(input:String):Number {
    var r:Number = 0;
    for (var i:int = 0; i < input.length; i++) {
        r += input.charCodeAt(i);
    }
    return r;
}

Also, depending on the required security, you can also try using MD5 or SHA-1.

尤怨 2024-10-28 00:05:59

如果你保证输入将是一个数字,你可以简单地通过 Number("4") 将其从字符串转换为数字
IE。

var stringInput:String = "15"; // or wherever you're getting the input from
var seed:Number = Number(stringInput);

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.

var stringInput:String = "15"; // or wherever you're getting the input from
var seed:Number = Number(stringInput);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文