Click here to Skip to main content
15,892,005 members
Home / Discussions / Web Development
   

Web Development

 
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 
AnswerRe: System.Security.SecurityException: Requested registry access is not allowed. Pin
SHatchard17-Jul-07 21:40
SHatchard17-Jul-07 21:40 
GeneralRe: System.Security.SecurityException: Requested registry access is not allowed. Pin
tadhg8817-Jul-07 23:15
tadhg8817-Jul-07 23:15 
GeneralRe: System.Security.SecurityException: Requested registry access is not allowed. Pin
SHatchard17-Jul-07 23:41
SHatchard17-Jul-07 23:41 
GeneralRe: System.Security.SecurityException: Requested registry access is not allowed. Pin
tadhg8818-Jul-07 0:21
tadhg8818-Jul-07 0:21 
AnswerRe: Web page Text highlighing using .net from toolbar button Pin
Eduard Keilholz17-Jul-07 5:14
Eduard Keilholz17-Jul-07 5:14 
QuestionWeb Part for displaying a Mappoint 2006 file in Sharepoint Pin
DThomas5517-Jul-07 1:59
DThomas5517-Jul-07 1:59 
Questionwebservice Pin
Navneet Hegde17-Jul-07 1:07
Navneet Hegde17-Jul-07 1:07 
AnswerRe: webservice Pin
Vasudevan Deepak Kumar17-Jul-07 6:42
Vasudevan Deepak Kumar17-Jul-07 6:42 
QuestionASP.Net and HTML Image Map Pin
hifiger200417-Jul-07 0:56
hifiger200417-Jul-07 0:56 
AnswerRe: ASP.Net and HTML Image Map Pin
Vasudevan Deepak Kumar17-Jul-07 1:02
Vasudevan Deepak Kumar17-Jul-07 1:02 

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.