Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In PowerShell I find myself doing this kind of thing over and over again for matches:

some-command | select-string '^(//[^#]*)' |
     %{some-other-command $_.matches[0].groups[1].value}

So basically - run a command that generates lines of text, and for each line I want to run a command on a regex capture inside the line (if it matches). Seems really simple. The above works, but is there a shorter way to pull out those regex capture groups? Perl had $1 and so on, if I remember right. Posh has to have something similar, right? I've seen "$matches" references on SO but can't figure out what makes that get set.

I'm very new to PowerShell btw, just started learning.

share|improve this question

3 Answers

up vote 8 down vote accepted

You can use the -match operator to reformulate your command as:

some-command | Foreach-Object { if($_ -match '^(//[^#]*)') { some-other-command $($matches[1])}}
share|improve this answer
Eh? He's matching a line that starts with double-slash (//) and greedily matching up until (but excluding) the first hash (#). There is no end-of-line marker, so he's not specifically matching the entire line. – Peter Boughton Jun 18 '09 at 7:22
Yeah, that's the kind of thing I was looking for. Thanks for the edit, Bas. – Scott Bilas Jun 18 '09 at 15:35

You could try this:

Get-Content foo.txt | foreach { some-othercommand [regex]::match($_,'^(//[^#]*)').value }
share|improve this answer

Named Replacement

'foo bar' -replace '(?<First>foo).+', '${First}'

Returns: foo

Unnamed Replacement

 'foo bar' -replace '(foo).+(ar)', '$2 z$2 $1'

Returns: ar zar foo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.