gpt4 book ai didi

javascript正则表达式替换输入表单验证

转载 作者:行者123 更新时间:2023-11-29 14:46:31 25 4
gpt4 key购买 nike

当输入格式为字符串时:

the beginning r or R, then some non-digit letters, I want to replace the string with R.

是这样的情况:

onkeyup="this.value=this.value.replace(/^[rR]\D/g,'R')"

但它不起作用。

有人可以帮帮我吗?谢谢。

最佳答案

使用以下正则表达式:

     onkeyup="this.value=this.value.replace(/^[rR]\D+/, 'R')";

查看此演示:

<input onkeyup="this.value=this.value.replace(/^[rR]\D+/,'R')" />

关于javascript正则表达式替换输入表单验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32043557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com