Click here to Skip to main content
15,868,016 members
Home / Discussions / C#
   

C#

 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 0:25
professionalKornfeld Eliyahu Peter12-Feb-14 0:25 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 1:06
protectorMarco Bertschi12-Feb-14 1:06 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 1:11
professionalKornfeld Eliyahu Peter12-Feb-14 1:11 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 1:17
protectorMarco Bertschi12-Feb-14 1:17 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 1:25
professionalKornfeld Eliyahu Peter12-Feb-14 1:25 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 1:39
protectorMarco Bertschi12-Feb-14 1:39 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 1:46
professionalKornfeld Eliyahu Peter12-Feb-14 1:46 
AnswerRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 10:13
professionalKornfeld Eliyahu Peter12-Feb-14 10:13 
I add my answer here as our little chat is loooooooooooooooong.
As I saw you try to verify a SD-ELEMENT according to rfc 5424...
SD-ELEMENT is build from SD-ID and SD-PARAM
SD-ID is build like
* any US-ASCII except @, =, ], ", whitesapce and control charaters
* a @
* one or more numbers separated by dot (.)
The regex for that is -
([!-~][^@=\]\"])+@(\d)+(\.(\d)+)*

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})*


It's not clearly stated (or I missed) but seems to me that SD-ID and PARAM-NAME should not exceed the length of 32 characters...

I hope it helps...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)

GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 21:11
protectorMarco Bertschi12-Feb-14 21:11 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter12-Feb-14 21:36
professionalKornfeld Eliyahu Peter12-Feb-14 21:36 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 22:00
protectorMarco Bertschi12-Feb-14 22:00 
AnswerRe: RegEx problem with Escape sequences Pin
Marco Bertschi12-Feb-14 22:27
protectorMarco Bertschi12-Feb-14 22:27 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 2:22
professionalKornfeld Eliyahu Peter13-Feb-14 2:22 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 2:47
protectorMarco Bertschi13-Feb-14 2:47 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 3:01
professionalKornfeld Eliyahu Peter13-Feb-14 3:01 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 3:26
protectorMarco Bertschi13-Feb-14 3:26 
GeneralRe: RegEx problem with Escape sequences Pin
Kornfeld Eliyahu Peter13-Feb-14 3:34
professionalKornfeld Eliyahu Peter13-Feb-14 3:34 
GeneralRe: RegEx problem with Escape sequences Pin
Marco Bertschi13-Feb-14 4:16
protectorMarco Bertschi13-Feb-14 4:16 
QuestionCan not create CodeTemplate folder when install XSockets Pin
Member 1027154211-Feb-14 22:14
Member 1027154211-Feb-14 22:14 
AnswerRe: Can not create CodeTemplate folder when install XSockets Pin
Pete O'Hanlon11-Feb-14 22:23
subeditorPete O'Hanlon11-Feb-14 22:23 
QuestionHow to convert .NET application to native and execute it with our installing Framework Pin
X204011-Feb-14 12:41
X204011-Feb-14 12:41 
AnswerRe: How to convert .NET application to native and execute it with our installing Framework Pin
Dave Kreskowiak11-Feb-14 13:02
mveDave Kreskowiak11-Feb-14 13:02 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
OriginalGriff11-Feb-14 22:41
mveOriginalGriff11-Feb-14 22:41 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
Dave Kreskowiak12-Feb-14 3:53
mveDave Kreskowiak12-Feb-14 3:53 
GeneralRe: How to convert .NET application to native and execute it with our installing Framework Pin
Ennis Ray Lynch, Jr.12-Feb-14 9:37
Ennis Ray Lynch, Jr.12-Feb-14 9:37 

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.