欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp+正则获得字符串中最后一个字母非字母不算

程序员文章站 2023-01-29 21:19:46
 复制代码 代码如下: function getlastword(str) set regex = new re...
 
复制代码 代码如下:

function getlastword(str)
set regex = new regexp
regex.pattern = "(.*)([a-za-z])[^a-za-z]*"
regex.ignorecase = false
regex.global = true
str = regex.replace(str,"$2")
getlastword = str
set reg=nothing
end function
str="1b2a3fdsafdsf32432432"
response.write(getlastword(str)):response.end()