Click here to Skip to main content
15,902,893 members
Home / Discussions / C#
   

C#

 
GeneralRe: Animate Window Pin
DigitalKing7-Feb-06 16:34
DigitalKing7-Feb-06 16:34 
QuestionRegEx Pin
Expert Coming7-Feb-06 12:21
Expert Coming7-Feb-06 12:21 
AnswerRe: RegEx Pin
Guffa7-Feb-06 13:13
Guffa7-Feb-06 13:13 
GeneralRe: RegEx Pin
Expert Coming7-Feb-06 13:41
Expert Coming7-Feb-06 13:41 
QuestionHelp - Code Pin
Expert Coming7-Feb-06 14:21
Expert Coming7-Feb-06 14:21 
AnswerRe: Help - Code Pin
Guffa7-Feb-06 14:40
Guffa7-Feb-06 14:40 
GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 14:56
Expert Coming7-Feb-06 14:56 
AnswerRe: Help - Code Pin
DigitalKing7-Feb-06 15:12
DigitalKing7-Feb-06 15:12 
string text="";
            
//Get text here

//Parse
Regex x = new Regex(">Name:</td><td>(.+?)</td>");
foreach (Match m in x.Matches(text))
{
    if (m.Groups.Count > 1)
    {
        Console.WriteLine(m.Groups[1].Value);
    }
}

GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 16:35
Expert Coming7-Feb-06 16:35 
QuestionRestated Pin
Expert Coming7-Feb-06 16:48
Expert Coming7-Feb-06 16:48 
QuestionFound Where, but How? Pin
Expert Coming7-Feb-06 17:13
Expert Coming7-Feb-06 17:13 
AnswerRe: Found Where, but How? Pin
Guffa7-Feb-06 19:31
Guffa7-Feb-06 19:31 
GeneralRe: Found Where, but How? Pin
Expert Coming7-Feb-06 19:45
Expert Coming7-Feb-06 19:45 
GeneralRe: Found Where, but How? Pin
J4amieC7-Feb-06 21:41
J4amieC7-Feb-06 21:41 
AnswerRe: Found Where, but How? Pin
Guffa7-Feb-06 22:17
Guffa7-Feb-06 22:17 
QuestionMakecert source code Pin
Paul Strous7-Feb-06 11:59
Paul Strous7-Feb-06 11:59 
QuestionExtract Dataset to Excel Pin
cyrus_thevirus7-Feb-06 11:33
cyrus_thevirus7-Feb-06 11:33 
QuestionSend Text Message to Phone Pin
cyrus_thevirus7-Feb-06 11:27
cyrus_thevirus7-Feb-06 11:27 
AnswerRe: Send Text Message to Phone Pin
Ravi Bhavnani7-Feb-06 11:52
professionalRavi Bhavnani7-Feb-06 11:52 
Questionhow to set textbox1.text in one form from other forms ? Pin
hdv2127-Feb-06 11:24
hdv2127-Feb-06 11:24 
AnswerRe: how to set textbox1.text in one form from other forms ? Pin
DigitalKing7-Feb-06 15:28
DigitalKing7-Feb-06 15:28 
GeneralRe: how to set textbox1.text in one form from other forms ? Pin
hdv2127-Feb-06 17:22
hdv2127-Feb-06 17:22 
GeneralRe: how to set textbox1.text in one form from other forms ? Pin
DigitalKing7-Feb-06 20:14
DigitalKing7-Feb-06 20:14 
Questionupdate problem Pin
Ado_bado7-Feb-06 11:22
Ado_bado7-Feb-06 11:22 
QuestionDatagrid Context Menu Pin
OrbeaOrca7-Feb-06 10:11
OrbeaOrca7-Feb-06 10:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.