Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/regex/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/xslt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Regex 用于限制xslt中的数字和字母范围的正则表达式_Regex_Xslt - Fatal编程技术网

Regex 用于限制xslt中的数字和字母范围的正则表达式

Regex 用于限制xslt中的数字和字母范围的正则表达式,regex,xslt,Regex,Xslt,我的数字范围是T30000000和T8999999 这是所有在30000000和8999999之间的数字,T是前缀。。 知道如何使用正则表达式过滤xslt中的值吗? 谢谢您可以使用以下正则表达式 T[3-8]\d{7} 我的想法也是如此,这里有一个演示链接。

我的数字范围是T30000000和T8999999 这是所有在30000000和8999999之间的数字,T是前缀。。 知道如何使用正则表达式过滤xslt中的值吗?
谢谢

您可以使用以下正则表达式

T[3-8]\d{7}

我的想法也是如此,这里有一个演示链接。