asp textarea 多行數(shù)組分割處理方法
更新時(shí)間:2010年05月30日 01:01:45 作者:
上一篇文章,我們將text中的數(shù)據(jù)插入到了textarea中,后臺(tái)就需要處理,在textarea中,回車符不是“\n”,應(yīng)該是chr(13)。
所以對應(yīng)的asp處理代碼如下
dedearr=split(xiangguanid2,chr(13)) '分割成數(shù)組
for dede=0 to ubound(dedearr)-1 '數(shù)組長度減一,因?yàn)樽詈笥袃蓚€(gè)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)
$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;
}
}
復(fù)制代碼 代碼如下:
dedearr=split(xiangguanid2,chr(13)) '分割成數(shù)組
for dede=0 to ubound(dedearr)-1 '數(shù)組長度減一,因?yàn)樽詈笥袃蓚€(gè)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;
}
}
您可能感興趣的文章:
- asp取得數(shù)組中的最大值的方法
- asp下使用數(shù)組存放數(shù)據(jù)的代碼
- asp 得到動(dòng)態(tài)數(shù)組中元素的個(gè)數(shù)
- asp.net 數(shù)組中字符串替換的幾種方式
- asp 動(dòng)態(tài)數(shù)組 提供Add、Insert、Remove、RemoveAt、Search等方法。
- asp.net 字符串、二進(jìn)制、編碼數(shù)組轉(zhuǎn)換函數(shù)
- asp.net通過js實(shí)現(xiàn)Cookie創(chuàng)建以及清除Cookie數(shù)組的代碼
- asp 數(shù)組 重復(fù)刪除函數(shù)(腳本之家增強(qiáng)版)
- ASP 過濾數(shù)組重復(fù)數(shù)據(jù)函數(shù)(加強(qiáng)版)
- ASP 使用Filter函數(shù)來檢索數(shù)組的實(shí)現(xiàn)代碼
- asp數(shù)組的使用介紹
- Asp與JS的數(shù)組和字符串下標(biāo)介紹
- asp中使用redim、preserve創(chuàng)建動(dòng)態(tài)數(shù)組實(shí)例
- ASP定義數(shù)組方法的技巧
相關(guān)文章
ASP Access實(shí)現(xiàn)網(wǎng)站計(jì)數(shù)器(訪問量)
學(xué)習(xí)asp的朋友需要了解下2008-11-11
asp+Access通用的自動(dòng)替換數(shù)據(jù)庫中的字符串
幾年前寫的一個(gè)腳本,可以自動(dòng)進(jìn)行整庫的數(shù)據(jù)替換。2008-06-06
用ASP+DLL實(shí)現(xiàn)WEB方式修改服務(wù)器時(shí)間
用ASP+DLL實(shí)現(xiàn)WEB方式修改服務(wù)器時(shí)間...2006-09-09

