Click here to Skip to main content
15,891,431 members
Home / Discussions / C#
   

C#

 
Questionexecute web page simultaneously Pin
Yosh_5-Apr-09 0:26
professionalYosh_5-Apr-09 0:26 
QuestionMerge MenuStrip in MDI form Pin
baranils5-Apr-09 0:22
baranils5-Apr-09 0:22 
QuestionRe: Merge MenuStrip in MDI form [modified] Pin
Eddy Vluggen5-Apr-09 5:59
professionalEddy Vluggen5-Apr-09 5:59 
AnswerRe: Merge MenuStrip in MDI form Pin
baranils5-Apr-09 6:21
baranils5-Apr-09 6:21 
QuestionExtract the in-betweens... Pin
jas0n234-Apr-09 23:52
jas0n234-Apr-09 23:52 
AnswerRe: Extract the in-betweens... Pin
Christian Graus4-Apr-09 23:59
protectorChristian Graus4-Apr-09 23:59 
GeneralRe: Extract the in-betweens... Pin
jas0n235-Apr-09 0:29
jas0n235-Apr-09 0:29 
AnswerRe: Extract the in-betweens... Pin
12Code5-Apr-09 1:08
12Code5-Apr-09 1:08 
jay_t55 wrote:
need to extract the words 'extract this!':

<title>Extract this!


Here you go..

string str = "<title>Extract this!</title>";
Regex RE = new Regex(@"(<title> )(\w|\S|\s )+(</title> )");
MatchCollection MC = RE.Matches(str);

if (MC.Count == 0) MessageBox.Show("No match");
foreach (Match M in MC)
{
    string trimStr = "</title>";
    MessageBox.Show(M.ToString().Trim(trimStr.ToCharArray()));
}


8.Kelvin()
{   
  while (!(the machine can program itself))
     Wont_stop_coding = true;
}


GeneralRe: Extract the in-betweens... Pin
jas0n235-Apr-09 2:06
jas0n235-Apr-09 2:06 
AnswerRe: Extract the in-betweens... Pin
#realJSOP5-Apr-09 3:01
mve#realJSOP5-Apr-09 3:01 
GeneralRe: Extract the in-betweens... Pin
PIEBALDconsult5-Apr-09 4:16
mvePIEBALDconsult5-Apr-09 4:16 
QuestionGet string size in bytes Pin
Harvey Saayman4-Apr-09 23:36
Harvey Saayman4-Apr-09 23:36 
AnswerRe: Get string size in bytes Pin
Luc Pattyn4-Apr-09 23:39
sitebuilderLuc Pattyn4-Apr-09 23:39 
GeneralRe: Get string size in bytes Pin
Harvey Saayman5-Apr-09 2:28
Harvey Saayman5-Apr-09 2:28 
GeneralRe: Get string size in bytes Pin
Luc Pattyn5-Apr-09 2:44
sitebuilderLuc Pattyn5-Apr-09 2:44 
AnswerRe: Get string size in bytes Pin
Eslam Afifi4-Apr-09 23:56
Eslam Afifi4-Apr-09 23:56 
QuestionGetting the type from a string, any magic for this in C#? Pin
ioctl514-Apr-09 22:30
ioctl514-Apr-09 22:30 
AnswerRe: Getting the type from a string, any magic for this in C#? Pin
Steve Echols4-Apr-09 23:15
Steve Echols4-Apr-09 23:15 
GeneralRe: Getting the type from a string, any magic for this in C#? Pin
ioctl514-Apr-09 23:26
ioctl514-Apr-09 23:26 
GeneralRe: Getting the type from a string, any magic for this in C#? Pin
Steve Echols4-Apr-09 23:46
Steve Echols4-Apr-09 23:46 
AnswerRe: Getting the type from a string, any magic for this in C#? Pin
Luc Pattyn4-Apr-09 23:34
sitebuilderLuc Pattyn4-Apr-09 23:34 
GeneralRe: Getting the type from a string, any magic for this in C#? Pin
ioctl514-Apr-09 23:38
ioctl514-Apr-09 23:38 
GeneralRe: Getting the type from a string, any magic for this in C#? Pin
Steve Echols4-Apr-09 23:59
Steve Echols4-Apr-09 23:59 
AnswerRe: Getting the type from a string, any magic for this in C#? Pin
PIEBALDconsult5-Apr-09 4:29
mvePIEBALDconsult5-Apr-09 4:29 
JokeRe: Getting the type from a string, any magic for this in C#? Pin
Luc Pattyn5-Apr-09 4:54
sitebuilderLuc Pattyn5-Apr-09 4:54 

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.