我正在创建一个 wp7 应用程序,在他的应用程序 m 中通过 Web 服务检索数据,数据中有一些 url 和邮件 ID。但看起来像简单的文字。我如何识别网址和邮件 ID。?
问问题
24 次
1 回答
1
使用正则表达式。
对于网址:
Regex r = new Regex("(?\w+)://(?[\w@][\w.:@]+)/?[\w.?=%&=-@/$,]*");
// Match the regular expression pattern against a text string.
Match m = r.Match(text);
while (m.Success)
{
//do things with your matching text
m = m.NextMatch();
}
对于电子邮件,您可以使用另一个正则表达式:
Regex regex = new Regex(@"^([\w.-]+)@([\w-]+)((.(\w){2,3})+)$");
于 2012-09-26T12:20:19.050 回答