Click here to Skip to main content
15,867,308 members
Home / Discussions / C#
   

C#

 
GeneralRe: Requested registry access is not allowed. Pin
OriginalGriff5-Feb-14 23:57
mveOriginalGriff5-Feb-14 23:57 
Questionhow to return query result with method in c#??? Pin
Edalat_20115-Feb-14 22:54
Edalat_20115-Feb-14 22:54 
AnswerRe: how to return query result with method in c#??? Pin
Shameel5-Feb-14 23:17
professionalShameel5-Feb-14 23:17 
GeneralRe: how to return query result with method in c#??? Pin
Edalat_20116-Feb-14 1:54
Edalat_20116-Feb-14 1:54 
QuestionRe: how to return query result with method in c#??? Pin
Shameel6-Feb-14 2:11
professionalShameel6-Feb-14 2:11 
AnswerRe: how to return query result with method in c#??? Pin
littleGreenDude6-Feb-14 4:33
littleGreenDude6-Feb-14 4:33 
AnswerRe: how to return query result with method in c#??? Pin
V.6-Feb-14 19:35
professionalV.6-Feb-14 19:35 
QuestionRegEx problem [Solved] Pin
Marco Bertschi5-Feb-14 22:25
protectorMarco Bertschi5-Feb-14 22:25 
I am stuck with regular expressions. In fact, I want the 'T' to be optional, and I got a working example:

string text = "123T234";
Regex regex = new Regex(@"([0-9]{3})[T]?([0-9]{3})");
Match stuff = regex.Match(text); //Groups = [123][234]


Now, why doesn't

Quote:
([0-9]{4})-([1-9]|[1][0-2])-([0-2]?[0-9]|[3][0-1])[T]?([0-1]?[0-9]|[2][0-3])[:]([0-5]?[0-9])[:]([0-5]?[0-9])?.?([0-9]{1,6})[Z]?([+-]?[0-9][\.|,]?[0-9]?|[0-9]{2}?|[+-]?[0][1][0-2][\.]?[0-9]?|[0-9]{2}?)

produce a match for
2014-02-01T14:12:33Z+1

?

Any help is greatly appreciated.


[Solved by Original Griff]
Clean-up crew needed, grammar spill... - Nagy Vilmos


modified 6-Feb-14 5:45am.

AnswerRe: RegEx problem Pin
OriginalGriff5-Feb-14 23:17
mveOriginalGriff5-Feb-14 23:17 
GeneralRe: RegEx problem Pin
Marco Bertschi5-Feb-14 23:29
protectorMarco Bertschi5-Feb-14 23:29 
GeneralRe: RegEx problem Pin
OriginalGriff5-Feb-14 23:33
mveOriginalGriff5-Feb-14 23:33 
GeneralRe: RegEx problem Pin
Marco Bertschi5-Feb-14 23:45
protectorMarco Bertschi5-Feb-14 23:45 
GeneralRe: RegEx problem Pin
OriginalGriff5-Feb-14 23:57
mveOriginalGriff5-Feb-14 23:57 
QuestionIqualProp in C# Pin
AshwiniSH5-Feb-14 19:43
professionalAshwiniSH5-Feb-14 19:43 
AnswerRe: IqualProp in C# Pin
Marco Bertschi5-Feb-14 20:26
protectorMarco Bertschi5-Feb-14 20:26 
AnswerRe: IqualProp in C# Pin
Dave Kreskowiak6-Feb-14 1:50
mveDave Kreskowiak6-Feb-14 1:50 
GeneralRe: IqualProp in C# Pin
AshwiniSH6-Feb-14 2:37
professionalAshwiniSH6-Feb-14 2:37 
GeneralRe: IqualProp in C# Pin
Dave Kreskowiak6-Feb-14 3:39
mveDave Kreskowiak6-Feb-14 3:39 
QuestionHow can I tell the difference between source and published .NET code? Pin
Xarzu5-Feb-14 10:35
Xarzu5-Feb-14 10:35 
AnswerRe: How can I tell the difference between source and published .NET code? Pin
Shameel5-Feb-14 20:15
professionalShameel5-Feb-14 20:15 
GeneralRe: How can I tell the difference between source and published .NET code? Pin
Bernhard Hiller5-Feb-14 21:17
Bernhard Hiller5-Feb-14 21:17 
GeneralRe: How can I tell the difference between source and published .NET code? Pin
OriginalGriff5-Feb-14 21:31
mveOriginalGriff5-Feb-14 21:31 
GeneralRe: How can I tell the difference between source and published .NET code? Pin
Shameel5-Feb-14 23:14
professionalShameel5-Feb-14 23:14 
AnswerRe: How can I tell the difference between source and published .NET code? Pin
jschell6-Feb-14 8:38
jschell6-Feb-14 8:38 
QuestionMVVM Observe VM Command Pin
eddieangel5-Feb-14 8:28
eddieangel5-Feb-14 8:28 

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.