gpt4 book ai didi

regex - ASP 经典 : Check if string only consists of valid chars

转载 作者:行者123 更新时间:2023-12-04 06:46:00 24 4
gpt4 key购买 nike

我一直在检查整个互联网,但真的找不到我的问题的任何具体解决方案。

如何检查字符串是否仅包含声明的有效字符?

我希望我的字符串只包含 0-9、A-Z 和 a-z

所以字符串 oifrmf9RWGEWRG3oi4m3ofm3mklwef-qæw应该是无效的,因为 -æ而字符串 joidsamfoiWRGWRGmoi34m3f应该是有效的。

我一直在使用内置的 RegExp 来去除字符串,但是是否可以只检查并返回 bool 值 false 或 true?

我的正则表达式:

set pw = new regexp
pw.global = true
pw.pattern = "[^a-zA-Z0-9]"

newstring = pw.replace("iownfiwefnoi3w4mtl3.-34ø'3", "")

谢谢 :)

最佳答案

你可以做一个 Test返回 True 或 False

If( pw.Test("string") ) Then
'' Do something
End If

关于regex - ASP 经典 : Check if string only consists of valid chars,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7890824/

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