简体   繁体   中英

how to create expression in xbase++

String GSTINFORMAT_REGEX = "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Z]{1}[0-9a-zA-Z]{1}";

I want to create this expression in xbase++. Please tell me how to create this kind of expression. Thanks in advance.

Try this:

 GSTINFORMAT_REGEX = "[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Z]{1}[0-9a-zA-Z]{1}";
 oRegExp = CreateObject("VBScript.RegExp")
 oRegExp.Pattern = GSTINFORMAT_REGEX
 result = oRegExp.test(testphrase)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM