首页 > 编程 > Regex > 正文

javascript用正则表达式把1234567890替换为abcdefghij

2020-03-16 21:20:14
字体:
来源:转载
供稿:网友
代码如下:

<script> 
alert('0123456789'.replace(/(/d)/g, function ($1){return "abcdefghij".split("")[$1];})); 
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表