Regular Expressions in VbScript?

后端 未结 5 1315
谎友^
谎友^ 2020-12-18 16:02

Does VbScript have a native implementation for Regex? I need to validate e-mail addresses on an old ASP application.

Any pointers would be great.

5条回答
  •  离开以前
    2020-12-18 16:33

    VBScript has a built-in RegExp object, which is Microsoft's implementation of JavaScript regular expressions. I have an article about the VBScript RegExp object on my website that explains how to use it.

提交回复
热议问题