研究了一个下午,没有头绪,来论坛求助,老ID丢了!重新注册了一个!=。=! 我想用javascript正则提取asp代码中 SQL行的 表达式 但是写来写去都不行,各位辛苦帮忙看看! 想提取引号中的SQL表达式 strSql="Select * from project354 where ID = "&Request("id")& and Name='111'"
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" html xmlns="http://www.w3.org/1999/xhtml" head meta http-equiv="Content-Type" content="text/html; charset=gb2312" / title文档/title style textarea { width:100%; &n...[ 查看全文 ]
不过VB.NET确实有许多VB6没有的新功能,代码的自动排版就是一项,这也正是我们今天要实现的功能——VB代码格式化。 先看下实现的效果: 格式化前: 代码如下: For i = 0 To WebBrowser1.Document.All.length - 1 If WebBrowser1.Document.All(i).tagName = "HTML" Then strContent = strContent & WebBrowser1.Document.All(i).innerHTML Exit For End If Next 格式化后: 代码如下: For ...[ 查看全文 ]
代码如下: '去掉html中的table代码 Function OutTable(str) dim a,re set re=new RegExp re.pattern="(?!img|br|p|div).*?" re.global=true a=str OutTable=re.replace(a,"") End Function [ 查看全文 ]