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

C#

 
QuestionAnimate Window Pin
Sean897-Feb-06 13:22
Sean897-Feb-06 13:22 
AnswerRe: Animate Window Pin
DigitalKing7-Feb-06 15:24
DigitalKing7-Feb-06 15:24 
GeneralRe: Animate Window Pin
Sean897-Feb-06 16:02
Sean897-Feb-06 16:02 
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 
private static void InterpretData(string szProfile)
{
Regex rxFind = new Regex(@">NameFrown | :( <szcharname>)");

MatchCollection matches = rxFind.Matches(szProfile);

foreach (Match match in matches)
{
if (match.Length != 0)
{
Console.WriteLine("Character Name: {0}", match.Groups["szcharname"]);
}
}

Console.WriteLine("RegEx'ed'");

Console.ReadLine();
}

It isn't finding a match. See anything?

I think that matches assumes you know exaclty the formet of the string. How do I FIND the string, then match it? Is there a better way?

-- modified at 20:30 Tuesday 7th February, 2006
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 
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 

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.