Click here to Skip to main content
15,790,135 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
GeneralRe: how to make username regex for windows forms Pin
sariqkhan4-Oct-12 1:55
sariqkhan4-Oct-12 1:55 
GeneralRe: how to make username regex for windows forms Pin
Manfred Rudolf Bihy4-Oct-12 2:01
professionalManfred Rudolf Bihy4-Oct-12 2:01 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27804-Oct-12 3:51
professionalPeter_in_27804-Oct-12 3:51 
GeneralRe: how to make username regex for windows forms Pin
Peter_in_27802-Oct-12 13:36
professionalPeter_in_27802-Oct-12 13:36 
Question[SOLVED] C Code Parsing Pin
Richard Andrew x645-Sep-12 17:03
professionalRichard Andrew x645-Sep-12 17:03 
AnswerRe: C Code Parsing Pin
Peter_in_27805-Sep-12 17:45
professionalPeter_in_27805-Sep-12 17:45 
GeneralRe: C Code Parsing Pin
Richard Andrew x646-Sep-12 11:09
professionalRichard Andrew x646-Sep-12 11:09 
QuestionRename File Name Help Pin
toikken5-Aug-12 19:56
toikken5-Aug-12 19:56 
AnswerRe: Rename File Name Help Pin
Bernhard Hiller6-Aug-12 0:11
Bernhard Hiller6-Aug-12 0:11 
GeneralRe: Rename File Name Help Pin
toikken6-Aug-12 16:05
toikken6-Aug-12 16:05 
GeneralRe: Rename File Name Help Pin
Bernhard Hiller6-Aug-12 21:24
Bernhard Hiller6-Aug-12 21:24 
QuestionSwap two values based on pattern Pin
biop.codeproject2-Aug-12 18:19
biop.codeproject2-Aug-12 18:19 
AnswerRe: Swap two values based on pattern Pin
Peter_in_27802-Aug-12 20:02
professionalPeter_in_27802-Aug-12 20:02 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject3-Aug-12 0:43
biop.codeproject3-Aug-12 0:43 
GeneralRe: Swap two values based on pattern Pin
Peter_in_27803-Aug-12 1:08
professionalPeter_in_27803-Aug-12 1:08 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject5-Aug-12 17:09
biop.codeproject5-Aug-12 17:09 
GeneralRe: Swap two values based on pattern Pin
biop.codeproject5-Aug-12 18:12
biop.codeproject5-Aug-12 18:12 
GeneralRe: Swap two values based on pattern Pin
Peter_in_27805-Aug-12 18:59
professionalPeter_in_27805-Aug-12 18:59 
QuestionRegEx Problem Pin
Kevin Marois19-Jun-12 13:12
professionalKevin Marois19-Jun-12 13:12 
I have this string:

var Line = "Dev: 0 Model: TOSHIBA MK3265GSX Serial: 20FDF20WS FW: GJ002H STW: 0 MaxLBA: 625142447 FDESUPPORTED: 0 PREBOOT: 0 DRIVETRUSTENABLED: 0 DRIVETRUSTSUPPORTED: 0 w128: 41 FULLFW: GJ002H SERVOFW: SDLSUPPORTED: 1 PLATFORM: 0 SAFE: 1 DSTTIMEOUT: 103 ISBOOTORSYSTEM: 1";

I am trying to use RegEx to extract all Key/Value pairs. So far I have:

private static string getWord(ref string Line, string WordToFind)
{
var retVal = string.Empty;

if (Line.Contains(WordToFind))
{
    var expression = @"(?:(?'Key'\S+): (?'Value'.*?)) ";
    Match match = Regex.Match(Line, expression,RegexOptions.IgnoreCase);

    if (match.Success)
    {
        string key = match.Groups[1].ToString();
    }
}

return retVal;
}


When I pass in "Model:" I get back "Dev". What am I doing wrong here?
If it's not broken, fix it until it is

AnswerRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 13:34
protectorAspDotNetDev19-Jun-12 13:34 
GeneralRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 13:52
protectorAspDotNetDev19-Jun-12 13:52 
GeneralRe: RegEx Problem Pin
Kevin Marois19-Jun-12 14:02
professionalKevin Marois19-Jun-12 14:02 
AnswerRe: RegEx Problem Pin
AspDotNetDev19-Jun-12 14:35
protectorAspDotNetDev19-Jun-12 14:35 
Questioncan someone tell me whats wrong with this expression? Pin
ChekGuy29-Apr-12 12:48
ChekGuy29-Apr-12 12:48 
AnswerRe: can someone tell me whats wrong with this expression? Pin
egenis29-Apr-12 20:22
egenis29-Apr-12 20:22 

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.