推薦:淺析ASP-server.URLEncode反函數:urldecode如果有空格就用代替,如果有其它字符就用%ASCII代替,如果有漢字等四個字節的字符,就用兩個%ASCII來代替。不過有時候我們也需要將經過這種編碼的字符串進行解碼,但asp並沒有提供相關的
| 以下為引用的內容: '把pattern 又修改了下 'code要檢測的代碼 'http://www.CuoXIn.com/asp.asp 'leixing html 或者ubb 'nopic 代碼沒有圖片時默認值 function toppic(code,leixing,nopic) set regex = new regexp regex.ignorecase = true regex.global = true if leixing = html then regex.pattern = <img(.*?)src/s?/=/s?(/u0022?)([^/u0022//>] ) else regex.pattern = /[img/]([^/u005B] ) end if set matches = regex.execute(code) if regex.test(code) then if leixing = html then toppic = matches(0).submatches(3) else toppic = matches(0).submatches(0) end if else toppic = nopic end if end function code1 = <img src=1.gif> pic = toppic(code1,html,nopic.gif) response.Write pic |
分享:ASP實例:讀取xml文件的程序以下為引用的內容: strSourceFile = Server.MapPath(dataXML&/Advertisement/&id&/adv.xml) Set