Click here to Skip to main content
15,888,031 members
Home / Discussions / C#
   

C#

 
QuestionGetting DataGridView checkbox checked event when it happens.... Pin
LongRange.Shooter26-Jul-06 8:44
LongRange.Shooter26-Jul-06 8:44 
AnswerRe: Getting DataGridView checkbox checked event when it happens.... Pin
led mike26-Jul-06 8:48
led mike26-Jul-06 8:48 
QuestionDetermining whether .Net 2.0 is installed or not? Pin
wasife26-Jul-06 7:36
wasife26-Jul-06 7:36 
Questionbuild 2003 from 2005 Pin
spin vector26-Jul-06 7:15
spin vector26-Jul-06 7:15 
AnswerRe: build 2003 from 2005 Pin
Steve Maier26-Jul-06 7:34
professionalSteve Maier26-Jul-06 7:34 
GeneralRe: build 2003 from 2005 Pin
spin vector26-Jul-06 7:54
spin vector26-Jul-06 7:54 
QuestionRegEx in C# to split on two delimiters Pin
Master Toothless One26-Jul-06 7:08
Master Toothless One26-Jul-06 7:08 
AnswerRe: RegEx in C# to split on two delimiters Pin
Dustin Metzgar26-Jul-06 8:20
Dustin Metzgar26-Jul-06 8:20 
I'm a little confused on your pattern here. The last name/value pair is what concerns me. You have it as:
7890 | ujk;l;097 - uio

But your own pattern suggests that this should be two pairs:
7890 | ujk;l
097 - uio

Is this a correct assumption on my part?

If it is, I did manage to find a way to separate this stuff out. What I did first was reversed the input string so it looks like this:
oiu - 790;l;kju - 0987;trwqe - 6542;elpmas a si-fdsa - 4321

Then I used the regular expression:
;?.*?\s*-\s*\d+

This yields the following:
oiu - 790
;l;kju - 0987
;trwqe - 6542
;elpmas a si-fdsa - 4321

If you remove the semicolon from the strings on which it appears and reverse them, it should work.  You could also group the match and pull the contents of the group:
;?(.*?\s*-\s*\d+)




Logifusion[^]
GeneralRe: RegEx in C# to split on two delimiters Pin
Master Toothless One26-Jul-06 9:30
Master Toothless One26-Jul-06 9:30 
AnswerRe: RegEx in C# to split on two delimiters Pin
BoneSoft26-Jul-06 12:02
BoneSoft26-Jul-06 12:02 
Questiontutorial with datagridview Pin
simsen26-Jul-06 7:02
simsen26-Jul-06 7:02 
AnswerRe: tutorial with datagridview Pin
simsen26-Jul-06 8:39
simsen26-Jul-06 8:39 
GeneralRe: tutorial with datagridview Pin
spin vector26-Jul-06 8:55
spin vector26-Jul-06 8:55 
AnswerRe: tutorial with datagridview Pin
simsen26-Jul-06 22:44
simsen26-Jul-06 22:44 
Questionhow to render a huge report in realtime (<1 minute) Pin
Razvan Dimescu26-Jul-06 7:02
Razvan Dimescu26-Jul-06 7:02 
AnswerRe: how to render a huge report in realtime (<1 minute) Pin
Ennis Ray Lynch, Jr.26-Jul-06 7:06
Ennis Ray Lynch, Jr.26-Jul-06 7:06 
AnswerRe: how to render a huge report in realtime (<1 minute) Pin
LongRange.Shooter26-Jul-06 8:50
LongRange.Shooter26-Jul-06 8:50 
QuestionFolder and File traversing in C# Pin
Harikrk26-Jul-06 6:38
Harikrk26-Jul-06 6:38 
AnswerRe: Folder and File traversing in C# Pin
vikashparida26-Jul-06 6:47
vikashparida26-Jul-06 6:47 
AnswerRe: Folder and File traversing in C# Pin
Stefan Troschuetz26-Jul-06 6:51
Stefan Troschuetz26-Jul-06 6:51 
GeneralRe: Folder and File traversing in C# Pin
Harikrk27-Jul-06 4:48
Harikrk27-Jul-06 4:48 
QuestionEnterprise Library Database Logging Pin
osamahmirza26-Jul-06 6:37
osamahmirza26-Jul-06 6:37 
QuestionDefaultValue, Custom Attributes, and PropertyGrids Pin
LordAelfric26-Jul-06 6:21
LordAelfric26-Jul-06 6:21 
AnswerRe: DefaultValue, Custom Attributes, and PropertyGrids Pin
LongRange.Shooter26-Jul-06 9:12
LongRange.Shooter26-Jul-06 9:12 
GeneralRe: DefaultValue, Custom Attributes, and PropertyGrids [modified] Pin
LordAelfric26-Jul-06 10:15
LordAelfric26-Jul-06 10:15 

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.