Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
[url]http://en.wikipedia.org/wiki/Microsoft_Certified_Professional[/url] you can find all books on Torrents
[code] Regex r; Match m; string inputString = "sdasdsf < Muhammad > dffafsdfsfssd < Afnan > fdgdfsagff <Khan> sdsdf dssdsdfsdsdfsdf<[email protected]>sdfsdfsdffsdsdfsdfsdffsdfsdfsd"; r = new Regex("(<.+?>)", RegexOptions.IgnoreCase | RegexOptions.Compiled); for (m = r.Match(inputString); m.Success; m = m.NextMatch()) { Console.WriteLine("Found:" + m.Groups[1] + "at" + m.Groups[1].Index); } Console.ReadLine();[/code]
The End.
Muhammad Afnan