Click here to Skip to main content
15,911,360 members
Home / Discussions / C#
   

C#

 
AnswerRe: Showing Multiple records Pin
carlecomm13-Jan-10 19:21
carlecomm13-Jan-10 19:21 
Questionregex problem [modified] Pin
uglyeyes12-Jan-10 18:14
uglyeyes12-Jan-10 18:14 
Hi,

I am using regextest program and filtering out text using below regex
(?<=\<div class="middleadimggold"\>).*?(?=\</div\>)

now I would like to include this in my c# code so that i can write only the text that matches. I am unsuccessfully doing this by using below code. I think something is not right and its not filtering out the data.

string match = @"(?<=\<div class=""middleadimggold""\>).*?(?=\</div\>)";

            using (StreamWriter sw = File.AppendText(@"c:\logs\data.txt"))
            {                
                if (Regex.IsMatch(this.Text,match))
                {
                    sw.WriteLine(this.Text);
                    sw.Close();
                }
            }


could someone please help. I think its something to do with inverted comma as when i ran the code in debug mode
match becomes
(?<=\\<div class=\"middleadimggold\"\\>).*?(?=\\</div\\>)
if I put above expression in the regex software nothing is being returned.

Thank you,

modified on Wednesday, January 13, 2010 12:36 AM

AnswerRe: regex problem Pin
OriginalGriff12-Jan-10 23:05
mveOriginalGriff12-Jan-10 23:05 
GeneralRe: regex problem Pin
uglyeyes13-Jan-10 0:25
uglyeyes13-Jan-10 0:25 
GeneralRe: regex problem Pin
OriginalGriff13-Jan-10 0:30
mveOriginalGriff13-Jan-10 0:30 
GeneralRe: regex problem Pin
uglyeyes13-Jan-10 18:07
uglyeyes13-Jan-10 18:07 
GeneralRe: regex problem Pin
OriginalGriff13-Jan-10 21:37
mveOriginalGriff13-Jan-10 21:37 
AnswerRe: regex problem Pin
carlecomm13-Jan-10 19:19
carlecomm13-Jan-10 19:19 
GeneralRe: regex problem Pin
uglyeyes13-Jan-10 19:28
uglyeyes13-Jan-10 19:28 
AnswerRe: regex problem Pin
Ravi Sant14-Apr-11 1:47
Ravi Sant14-Apr-11 1:47 
QuestionTroubles Drawing a Rubik Cube to windows form. Pin
Are Jay12-Jan-10 16:56
Are Jay12-Jan-10 16:56 
Questiongetting country code based on IP Pin
uglyeyes12-Jan-10 16:37
uglyeyes12-Jan-10 16:37 
AnswerRe: getting country code based on IP Pin
Dave Kreskowiak12-Jan-10 18:32
mveDave Kreskowiak12-Jan-10 18:32 
GeneralRe: getting country code based on IP Pin
uglyeyes12-Jan-10 19:10
uglyeyes12-Jan-10 19:10 
GeneralMessage Closed Pin
12-Jan-10 21:17
stancrm12-Jan-10 21:17 
GeneralRe: getting country code based on IP Pin
uglyeyes13-Jan-10 0:26
uglyeyes13-Jan-10 0:26 
GeneralRe: getting country code based on IP Pin
uglyeyes13-Jan-10 14:32
uglyeyes13-Jan-10 14:32 
Questioncall form problem? Pin
miss YY12-Jan-10 16:01
miss YY12-Jan-10 16:01 
AnswerRepost! Pin
DaveyM6912-Jan-10 22:21
professionalDaveyM6912-Jan-10 22:21 
AnswerCross Post Pin
<<Tash18>>13-Jan-10 0:50
<<Tash18>>13-Jan-10 0:50 
AnswerRe: call form problem? Pin
carlecomm13-Jan-10 19:24
carlecomm13-Jan-10 19:24 
QuestionWhat is the connection string for connecting your C# to a remote server ? Pin
jedongkendrick12-Jan-10 15:07
jedongkendrick12-Jan-10 15:07 
AnswerRe: What is the connection string for connecting your C# to a remote server ? Pin
Not Active12-Jan-10 15:43
mentorNot Active12-Jan-10 15:43 
AnswerRe: What is the connection string for connecting your C# to a remote server ? Pin
Abhinav S12-Jan-10 16:13
Abhinav S12-Jan-10 16:13 
AnswerRe: What is the connection string for connecting your C# to a remote server ? Pin
Dave Kreskowiak12-Jan-10 18:31
mveDave Kreskowiak12-Jan-10 18:31 

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.