asp+正则获得字符串中最后一个字母非字母不算
程序员文章站
2022-05-19 11:16:43
复制代码 代码如下: 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()
下一篇: 对python判断ip是否可达的实例详解