首页 > 开发 > 综合 > 正文

C#公共类收集

2024-07-21 02:19:19
字体:
来源:转载
供稿:网友
1.替换目标字符串中的url 成为超链接

using system;
using system.text.regularexpressions;

namespace arli.commonprj
{
public class replacelink
{
public replacelink()
{
}

/// <summary>替换目标字符串中的url 成为超链接</summary>
/// <param name="mystr">要替换的字符串</param>
public static string rpof(string mystr) {
mystr += " ";
regex myre = new regex(@"http:///s+ ", regexoptions.ignorecase);
matchcollection mclist = myre.matches(mystr);
foreach (match m in mclist){
mystr = mystr.replace(m.value,"<a href=/"" + m.value.remove(m.value.length-1,1) + "/"> ");
}
return mystr.remove(mystr.length -1,1);
}
}
}




发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表