JavaScript 中的 str_shuffle() 等效项?
就像 PHP 中的 str_shuffle()
函数一样,javascript 中是否有类似的打乱字符串的函数?
请帮忙!
Like the str_shuffle()
function in PHP, is there a function similar in shuffling the string in javascript ?
Please help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
不存在这样的函数,你自己写一个。这是一个例子:
No such function exist, you'll write one yourself. Here's an example:
您可以使用 php.js 实现:
http://phpjs.org/functions/str_shuffle:529
You could use php.js implementation:
http://phpjs.org/functions/str_shuffle:529
不,字符串没有内置方法可以随机化字符序列。
No, there is no inbuilt method of String that will randomise the character sequence.
这是我的 php.js 函数版本
Here's my versinof the php.js function
您也可以将其作为原型:
像这样使用它:
You could also do it as a prototype:
Using it like so:
我推荐 lodash shuffle 函数。
I would recommend lodash shuffle function.