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

vbs:把一段文字中指定字符颜色变成红色的正则

程序员文章站 2022-07-02 20:12:19
vbs:把一段文字中指定字符颜色变成红色的正则   function c(tstr,word)  dim re ...
vbs:把一段文字中指定字符颜色变成红色的正则

 
function c(tstr,word) 
dim re 
set re = new regexp 
re.ignorecase =true 
re.global=true 
re.pattern = "("&word&")" 
c=re.replace(tstr,"<font style='color:red;'>$1</font>") 
end function 

调用方法 

response.write c("内容字串","要显示为红色的字") 

比如 

<% 
function c(tstr,word) 
dim re 
set re = new regexp 
re.ignorecase =true 
re.global=true 
re.pattern = "("&word&")" 
c=re.replace(tstr,"<font style='color:red;'>$1</font>") 
end function 
response.write("lamking.com","a") 
%> 
就把lamking.com中的a替换为红色的。