Click here to Skip to main content
15,890,609 members
Home / Discussions / C#
   

C#

 
GeneralRe: Intersection Of polygon Pin
praveenqwe3-Aug-06 2:05
praveenqwe3-Aug-06 2:05 
GeneralRe: Intersection Of polygon Pin
Christian Graus3-Aug-06 11:25
protectorChristian Graus3-Aug-06 11:25 
Questionproperty file Pin
NasimKaziS3-Aug-06 1:34
NasimKaziS3-Aug-06 1:34 
AnswerRe: property file Pin
Not Active3-Aug-06 2:16
mentorNot Active3-Aug-06 2:16 
AnswerRe: property file Pin
J4amieC3-Aug-06 2:21
J4amieC3-Aug-06 2:21 
QuestionRegular expression format Pin
chandler833-Aug-06 1:30
chandler833-Aug-06 1:30 
AnswerRe: Regular expression format Pin
Christian Graus3-Aug-06 1:42
protectorChristian Graus3-Aug-06 1:42 
GeneralRe: Regular expression format [modified] Pin
User 66583-Aug-06 2:03
User 66583-Aug-06 2:03 
Christian Graus wrote:
Regex re=new Regex("^([0-9]+[dhms])$");


Wrong. What you probably meant was ^([0-9]+[dhms]){0,4}$
But that would still be wrong, because it wouldn't preserve the order of d,h,m,s.
The original Regex at least ensures the correct order of d, then h, then m, then s.

Christian Graus wrote:
Any number of digits


Just to not confuse the thread opener:
it acutually meast at least one digit
+ = one or more
* = zero or more
? = optional character, group

regards

modified 12-Sep-18 21:01pm.

GeneralRe: Regular expression format Pin
Christian Graus3-Aug-06 11:21
protectorChristian Graus3-Aug-06 11:21 
GeneralRe: Regular expression format Pin
chandler833-Aug-06 2:08
chandler833-Aug-06 2:08 
AnswerRe: Regular expression format Pin
User 66583-Aug-06 2:06
User 66583-Aug-06 2:06 
Questionguys for now Pin
diddy343-Aug-06 1:03
diddy343-Aug-06 1:03 
AnswerRe: guys for now Pin
stancrm3-Aug-06 1:08
stancrm3-Aug-06 1:08 
GeneralI know Pin
diddy343-Aug-06 1:10
diddy343-Aug-06 1:10 
GeneralRe: I know Pin
stancrm3-Aug-06 1:12
stancrm3-Aug-06 1:12 
GeneralThank u Pin
diddy343-Aug-06 1:15
diddy343-Aug-06 1:15 
GeneralRe: Thank u Pin
Ingo3-Aug-06 1:37
Ingo3-Aug-06 1:37 
GeneralRe: Thank u Pin
Dave Kreskowiak3-Aug-06 1:52
mveDave Kreskowiak3-Aug-06 1:52 
AnswerRe: guys for now Pin
Christian Graus3-Aug-06 1:46
protectorChristian Graus3-Aug-06 1:46 
QuestionPopulate dataset Pin
Mamphekgo3-Aug-06 0:49
Mamphekgo3-Aug-06 0:49 
AnswerRe: Populate dataset [modified] Pin
NasimKaziS3-Aug-06 1:38
NasimKaziS3-Aug-06 1:38 
QuestionC# books online Pin
vikas amin3-Aug-06 0:49
vikas amin3-Aug-06 0:49 
AnswerRe: C# books online Pin
yueue3-Aug-06 3:16
yueue3-Aug-06 3:16 
GeneralRe: C# books online [modified] Pin
vikas amin3-Aug-06 3:40
vikas amin3-Aug-06 3:40 
Questionrtb formatting problems Pin
SoftcodeSoftware3-Aug-06 0:07
SoftcodeSoftware3-Aug-06 0:07 

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.