Click here to Skip to main content
15,794,202 members
Home / Discussions / C#
   

C#

 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 2:25
professionalKornfeld Eliyahu Peter12-Feb-14 2:25 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 2:39
professionalMarco Bertschi12-Feb-14 2:39 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 2:46
professionalKornfeld Eliyahu Peter12-Feb-14 2:46 
AnswerRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 11:13
professionalKornfeld Eliyahu Peter12-Feb-14 11:13 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 22:11
professionalMarco Bertschi12-Feb-14 22:11 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 22:36
professionalKornfeld Eliyahu Peter12-Feb-14 22:36 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 23:00
professionalMarco Bertschi12-Feb-14 23:00 
AnswerRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 23:27
professionalMarco Bertschi12-Feb-14 23:27 
Kornfeld Eliyahu Peter wrote:
SD-PARAM is build from PARAM-NAME and PARAM-VALUE. PARAM-NAME is the same as SD-ID...

PARAM-VALUE build like

* any UTF-8

* the characters ", \ and ] must be escaped (by \)

The regex for that is -
([^"\]\\]|(\\")|(\\])|\\{2})*

The idea was good,
but I managed to come up with a better solution:

(?<!\\)@|(?<!\\)\[|(?<!\\)\]|(?<!\\)"


Will produce a match whenever there is a string (@, [, ] or ") without a preceding \, which is more than sufficient for my use case.
Clean-up crew needed, grammar spill... - Nagy Vilmos

GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 3:22
professionalKornfeld Eliyahu Peter13-Feb-14 3:22 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 3:47
professionalMarco Bertschi13-Feb-14 3:47 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 4:01
professionalKornfeld Eliyahu Peter13-Feb-14 4:01 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 4:26
professionalMarco Bertschi13-Feb-14 4:26 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 4:34
professionalKornfeld Eliyahu Peter13-Feb-14 4:34 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 5:16
professionalMarco Bertschi13-Feb-14 5:16 
QuestionCan not create CodeTemplate folder when install XSockets Pin
Member 1027154211-Feb-14 23:14
Member 1027154211-Feb-14 23:14 
AnswerRe: Can not create CodeTemplate folder when install XSockets Pin
Pete O'Hanlon11-Feb-14 23:23
subeditorPete O'Hanlon11-Feb-14 23:23 
QuestionHow to convert .NET application to native and execute it with our installing Framework Pin
X204011-Feb-14 13:41
X204011-Feb-14 13:41 
AnswerRe: How to convert .NET application to native and execute it with our installing Framework Pin
Dave Kreskowiak11-Feb-14 14:02
mveDave Kreskowiak11-Feb-14 14:02 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
OriginalGriff11-Feb-14 23:41
mvaOriginalGriff11-Feb-14 23:41 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
Dave Kreskowiak12-Feb-14 4:53
mveDave Kreskowiak12-Feb-14 4:53 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
Ennis Ray Lynch, Jr.12-Feb-14 10:37
Ennis Ray Lynch, Jr.12-Feb-14 10:37 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
Dave Kreskowiak12-Feb-14 14:12
mveDave Kreskowiak12-Feb-14 14:12 
AnswerRe: How to convert .NET application to native and execute it with our installing Framework Pin
Richard MacCutchan11-Feb-14 22:38
mveRichard MacCutchan11-Feb-14 22:38 
AnswerRe: How to convert .NET application to native and execute it with our installing Framework Pin
OriginalGriff11-Feb-14 23:43
mvaOriginalGriff11-Feb-14 23:43 
AnswerRe: How to convert .NET application to native and execute it with our installing Framework Pin
GuyThiebaut12-Feb-14 1:54
professionalGuyThiebaut12-Feb-14 1:54 

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.