2010年2月27日

C# Regular Expression

超好用的小軟體=口=

Regular Expression好強大~

小弟都只拿來分析大量的網頁的資料*0*



1.
using System.Text.RegularExpressions;

2.
MatchCollection youtube = Regex.Matches("source", "Regular Expression" , RegexOptions.None);

foreach (Match m in youtube)
{
id = m.Groups["id"].Value;
address = m.Groups["address"].Value;
title = m.Groups["title"].Value;
}

3.
用一個叫做title的group
(?<title>[\w]*)

沒有留言:

張貼留言

您可以使用一些 HTML 標記,例如 <b>, <i>, <a>