Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
AnswerRe: listen connection to sql database Pin
Wendelius15-Sep-14 17:56
mentorWendelius15-Sep-14 17:56 
GeneralRe: listen connection to sql database Pin
GIANGPZO17-Sep-14 16:36
professionalGIANGPZO17-Sep-14 16:36 
QuestionRegEx grouping question Pin
SledgeHammer0115-Sep-14 13:51
SledgeHammer0115-Sep-14 13:51 
AnswerRe: RegEx grouping question Pin
PIEBALDconsult15-Sep-14 14:29
mvePIEBALDconsult15-Sep-14 14:29 
AnswerRe: RegEx grouping question Pin
Kenneth Haugland15-Sep-14 16:07
mvaKenneth Haugland15-Sep-14 16:07 
GeneralRe: RegEx grouping question Pin
SledgeHammer0115-Sep-14 17:10
SledgeHammer0115-Sep-14 17:10 
GeneralRe: RegEx grouping question Pin
PIEBALDconsult15-Sep-14 18:19
mvePIEBALDconsult15-Sep-14 18:19 
GeneralRe: RegEx grouping question Pin
SledgeHammer0115-Sep-14 18:27
SledgeHammer0115-Sep-14 18:27 
The .Net regex engine is "special" as it's the only regex engine in the known universe that doesn't throw away intermediate captures. If you look at the Group object that captured the last occurrence of the group in question, there is a Captures property. They give you the intermediate captures in that collection.

(aB)* will match aBaB, but it will only give you 1 aB. If you look in the Captures property, it'll give you the 2 you are after.

((aB)*) will match aBaB, but it will still only give you 1 aB. It will also give you aBaB which is not what you really want.
GeneralRe: RegEx grouping question Pin
PIEBALDconsult15-Sep-14 18:38
mvePIEBALDconsult15-Sep-14 18:38 
QuestionGetPrintJobInfoCollection() Problem Pin
murali_utr15-Sep-14 3:52
murali_utr15-Sep-14 3:52 
AnswerRe: GetPrintJobInfoCollection() Problem Pin
OriginalGriff15-Sep-14 6:06
mveOriginalGriff15-Sep-14 6:06 
GeneralRe: GetPrintJobInfoCollection() Problem Pin
murali_utr15-Sep-14 17:02
murali_utr15-Sep-14 17:02 
QuestionMySQL Query, int column, datagridview show as System.Byte[] Pin
gonzaloleon15-Sep-14 3:20
gonzaloleon15-Sep-14 3:20 
QuestionRe: MySQL Query, int column, datagridview show as System.Byte[] Pin
Eddy Vluggen15-Sep-14 8:24
professionalEddy Vluggen15-Sep-14 8:24 
GeneralRe: MySQL Query, int column, datagridview show as System.Byte[] Pin
PIEBALDconsult15-Sep-14 8:48
mvePIEBALDconsult15-Sep-14 8:48 
GeneralRe: MySQL Query, int column, datagridview show as System.Byte[] Pin
gonzaloleon16-Sep-14 3:01
gonzaloleon16-Sep-14 3:01 
Questionhow to run Simple Instant Messenger Pin
Member 1108356315-Sep-14 3:11
Member 1108356315-Sep-14 3:11 
AnswerRe: how to run Simple Instant Messenger Pin
Pete O'Hanlon15-Sep-14 3:28
mvePete O'Hanlon15-Sep-14 3:28 
GeneralRe: how to run Simple Instant Messenger Pin
Member 1108356315-Sep-14 3:32
Member 1108356315-Sep-14 3:32 
QuestionImport and Export Excel Files into SQL with C#2005 ? Pin
Member 245846714-Sep-14 23:24
Member 245846714-Sep-14 23:24 
AnswerRe: Import and Export Excel Files into SQL with C#2005 ? Pin
Dave Kreskowiak15-Sep-14 1:32
mveDave Kreskowiak15-Sep-14 1:32 
GeneralRe: Import and Export Excel Files into SQL with C#2005 ? Pin
OriginalGriff15-Sep-14 2:14
mveOriginalGriff15-Sep-14 2:14 
GeneralRe: Import and Export Excel Files into SQL with C#2005 ? Pin
Dave Kreskowiak15-Sep-14 10:24
mveDave Kreskowiak15-Sep-14 10:24 
GeneralRe: Import and Export Excel Files into SQL with C#2005 ? Pin
Member 245846716-Sep-14 16:45
Member 245846716-Sep-14 16:45 
GeneralRe: Import and Export Excel Files into SQL with C#2005 ? Pin
Dave Kreskowiak16-Sep-14 18:56
mveDave Kreskowiak16-Sep-14 18:56 

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.