Powershell Regex help in extracting text between strings

Posted by vivekeviv on Stack Overflow See other posts from Stack Overflow or by vivekeviv
Published on 2010-06-04T06:17:27Z Indexed on 2010/06/04 6:19 UTC
Read the original article Hit count: 373

Filed under:
|

i Have an arguments like the one below which i pass to powershell script

-arg1 -abc -def -arg2 -ghi -jkl -arg3 -123 -234

Now i need to extract three strings without any whitespace

string 1: "-abc -def"

string 2: "-ghi -jkl"

string 3: "-123 -234"

i figured this expression could do it. But this doesnt seem to work.

$args -match '-arg1(?'arg1'.*?) -arg3(?'arg3'.*?) -arg3(?'arg3'.*)'. 

THis should return $matches['arg1'] etc. So whats wrong in above expression. Why do i get an error as shown below

runScript.ps1 -arg1 -abc -def -arg2 -ghi -jkl -arg3 -123 -234

Unexpected token 'arg1'.?) -arg2 (?'arg2'.?) -arg3 (?'arg3'.)'' in expression or statement. At G:\powershell\tools\powershell\runTest.ps1:1 char:71 + $args -match '-arg1 (?'arg1'.?) -arg2 (?'arg2'.?) -arg3 (?'arg3'.)' <<<< + CategoryInfo : ParserError: (arg1'.?) -arg2...g3 (?'arg3'.)':String) [], ParseException + FullyQualifiedErrorId : UnexpectedToken

and also the second question is how do i make arg1 or arg2 or arg3 optional?

The argument to script can be

-arg2 -def -ghi.

I'll take some default values for arg(1|2|3) that is not mentioned.

Thanks

© Stack Overflow or respective owner

Related posts about regex

Related posts about powershell