Click here to Skip to main content
15,881,172 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
AnswerRe: how to make username regex for windows forms Pin
Kenneth Haugland30-Sep-12 22:32
mvaKenneth Haugland30-Sep-12 22:32 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan30-Sep-12 23:11
sariqkhan30-Sep-12 23:11 
GeneralRe: how to make username regex for windows forms Pin
Richard MacCutchan30-Sep-12 23:44
mveRichard MacCutchan30-Sep-12 23:44 
AnswerRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy2-Oct-12 2:11
professionalManfred Rudolf Bihy2-Oct-12 2:11 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan2-Oct-12 7:22
sariqkhan2-Oct-12 7:22 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy3-Oct-12 23:10
professionalManfred Rudolf Bihy3-Oct-12 23:10 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan3-Oct-12 23:27
sariqkhan3-Oct-12 23:27 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy4-Oct-12 0:44
professionalManfred Rudolf Bihy4-Oct-12 0:44 
Above you said: "I mean allowing only one dot dash or underscore in a row?".
The meaning of "in a row" is that the characters consecutively follow one another with out other characters in between.
If you meant that there should be at most one "-" and at most one "." and at most one "_", you should have said so. Smile | :)

I don't think this is possible to achieve using regular expressions. You'd have to iterate over the characters and increment a counter for each of the three characters "-", "." and "_". As soon a one of the counters is greater than one the check already failed and you don't need to use the regulare expression.

Regards,

Manfred

"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian


GeneralRe: how to make username regex for windows forms Pin
sariqkhan4-Oct-12 0:55
sariqkhan4-Oct-12 0:55 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy4-Oct-12 1:01
professionalManfred Rudolf Bihy4-Oct-12 1:01 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27804-Oct-12 2:51
professionalPeter_in_27804-Oct-12 2:51 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27802-Oct-12 12:36
professionalPeter_in_27802-Oct-12 12:36 
Question[SOLVED] C Code Parsing Pin
Richard Andrew x645-Sep-12 16:03
professionalRichard Andrew x645-Sep-12 16:03 
AnswerRe: C Code Parsing Pin
Peter_in_27805-Sep-12 16:45
professionalPeter_in_27805-Sep-12 16:45 
GeneralRe: C Code Parsing Pin
Richard Andrew x646-Sep-12 10:09
professionalRichard Andrew x646-Sep-12 10:09 
QuestionRename File Name Help Pin
toikken5-Aug-12 18:56
toikken5-Aug-12 18:56 
AnswerRe: Rename File Name Help Pin
Bernhard Hiller5-Aug-12 23:11
Bernhard Hiller5-Aug-12 23:11 
GeneralRe: Rename File Name Help Pin
toikken6-Aug-12 15:05
toikken6-Aug-12 15:05 
GeneralRe: Rename File Name Help Pin
Bernhard Hiller6-Aug-12 20:24
Bernhard Hiller6-Aug-12 20:24 
QuestionSwap two values based on pattern Pin
biop.codeproject2-Aug-12 17:19
biop.codeproject2-Aug-12 17:19 
AnswerRe: Swap two values based on pattern Pin
Peter_in_27802-Aug-12 19:02
professionalPeter_in_27802-Aug-12 19:02 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject2-Aug-12 23:43
biop.codeproject2-Aug-12 23:43 
GeneralRe: Swap two values based on pattern Pin
Peter_in_27803-Aug-12 0:08
professionalPeter_in_27803-Aug-12 0:08 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject5-Aug-12 16:09
biop.codeproject5-Aug-12 16:09 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject5-Aug-12 17:12
biop.codeproject5-Aug-12 17:12 

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.