亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

asp textarea 多行數(shù)組分割處理方法

 更新時間:2010年05月30日 01:01:45   作者:  
上一篇文章,我們將text中的數(shù)據(jù)插入到了textarea中,后臺就需要處理,在textarea中,回車符不是“\n”,應(yīng)該是chr(13)。
所以對應(yīng)的asp處理代碼如下
復(fù)制代碼 代碼如下:

dedearr=split(xiangguanid2,chr(13)) '分割成數(shù)組
for dede=0 to ubound(dedearr)-1 '數(shù)組長度減一,因為最后有兩個chr(13)換行。
dedearr2=split(dedearr(dede),"|")
dedetitle=dedearr2(1)
dedeurl=dedearr2(0)
if dedetitle<>"" and dedeurl<>"" then
xiangguanart2=xiangguanart2&"<li><a href="""&dedeurl&""" title="""&dedetitle&""" target=""_blank"">"&dedetitle&"</a></li>"
end if
next
end if


php的的處理代碼 參考了(dedecms)
復(fù)制代碼 代碼如下:

$cfg_softinfos['sites'] = ereg_replace("\n{1,}","\n",str_replace("\r","\n",$cfg_softinfos['sites']));
$sites = explode("\n",trim($cfg_softinfos['sites']));
foreach($sites as $site)
{
if(trim($site)=='') continue;
list($link,$serverName) = explode('|',$site);

if(!eregi("^(http|ftp)://",$firstLink)) $flink = trim($link).$firstLink;
else $flink = $firstLink;

if($cfg_softinfos['gotojump']==1) $flink = $phppath."/download.php?open=1&aid=$aid&cid=$cid&link=".urlencode(base64_encode($flink));
$temp = str_replace("~link~",$flink,$tempStr);
$temp = str_replace("~server~",$serverName,$temp);
$downlinks .= $temp;
}
}

相關(guān)文章

最新評論