Click here to Skip to main content
15,900,818 members
Home / Discussions / Web Development
   

Web Development

 
Questionscreen saver code Pin
dskanth17-Jul-07 18:25
dskanth17-Jul-07 18:25 
AnswerRe: screen saver code Pin
Michael Sync17-Jul-07 20:00
Michael Sync17-Jul-07 20:00 
AnswerRe: screen saver code Pin
Eduard Keilholz18-Jul-07 1:48
Eduard Keilholz18-Jul-07 1:48 
GeneralRe: screen saver code Pin
haggenx23-Jul-07 13:04
haggenx23-Jul-07 13:04 
AnswerRe: screen saver code Pin
Vasudevan Deepak Kumar19-Jul-07 6:56
Vasudevan Deepak Kumar19-Jul-07 6:56 
GeneralValidation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Psycho-*Coder*-Extreme17-Jul-07 16:00
Psycho-*Coder*-Extreme17-Jul-07 16:00 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Michael Sync17-Jul-07 19:52
Michael Sync17-Jul-07 19:52 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Michael Sync17-Jul-07 19:56
Michael Sync17-Jul-07 19:56 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Psycho-*Coder*-Extreme17-Jul-07 20:06
Psycho-*Coder*-Extreme17-Jul-07 20:06 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Michael Sync17-Jul-07 20:44
Michael Sync17-Jul-07 20:44 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Ed.Poore18-Jul-07 5:02
Ed.Poore18-Jul-07 5:02 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Merlin Tintin9-Feb-11 23:31
Merlin Tintin9-Feb-11 23:31 
GeneralRe: Validation (XHTML 1.0 Transitional): Attribute 'border' is considered outdated..... Pin
Vasudevan Deepak Kumar17-Jul-07 22:22
Vasudevan Deepak Kumar17-Jul-07 22:22 
Generalswitching location of an asp.net application to a diffrent pc [modified] Pin
nicetohaveyou17-Jul-07 10:42
nicetohaveyou17-Jul-07 10:42 
GeneralRe: switching location of an asp.net application to a diffrent pc Pin
jchigg200017-Jul-07 10:46
jchigg200017-Jul-07 10:46 
GeneralRe: switching location of an asp.net application to a diffrent pc Pin
magnifique18-Jul-07 1:39
magnifique18-Jul-07 1:39 
QuestionI hate regular expressions... Pin
Fred_Smith17-Jul-07 10:40
Fred_Smith17-Jul-07 10:40 
AnswerRe: I hate regular expressions... Pin
George L. Jackson17-Jul-07 13:00
George L. Jackson17-Jul-07 13:00 
The "*" matches zero or more matches; the "+" matches 1 or more matches, and the "?" matches zero or one matches.

I don't really understand what you want? Confused | :confused: If you want to find words that either start with d or da or dag this works:
\b(d|da|dag)(?:[a-z]*)
	Regex^ rx = gcnew Regex("\\b(d|da|dag)(?:[a-z]*)");
 
	MatchCollection^ matches = rx->Matches("dog daddy dagwood wood xyzdagwood");
 	
	for each (Match^ match in matches)
	{
		Console::WriteLine(match->Value);   
	}</code>


"We make a living by what we get, we make a life by what we give." --Winston Churchill

GeneralRe: I hate regular expressions... Pin
Fred_Smith17-Jul-07 13:27
Fred_Smith17-Jul-07 13:27 
AnswerRe: I hate regular expressions... Pin
Guffa17-Jul-07 14:18
Guffa17-Jul-07 14:18 
GeneralRe: I hate regular expressions... Pin
Fred_Smith17-Jul-07 22:15
Fred_Smith17-Jul-07 22:15 
GeneralRe: I hate regular expressions... Pin
Guffa17-Jul-07 23:25
Guffa17-Jul-07 23:25 
GeneralRe: I hate regular expressions... Pin
Fred_Smith18-Jul-07 0:05
Fred_Smith18-Jul-07 0:05 
AnswerRe: I hate regular expressions... Pin
Guffa18-Jul-07 1:16
Guffa18-Jul-07 1:16 
QuestionSystem.Security.SecurityException: Requested registry access is not allowed. Pin
tadhg8817-Jul-07 3:30
tadhg8817-Jul-07 3:30 

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.