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.

I have many files in a folder with this format

constant_blah_blah_blah.png

How can I replace the underscores with spaces and also remove the constant_ from them using PowerShell?

Thanks in advance.

share|improve this question
1  
What have you tried? Don't ask questions about just what you want done. – manojlds Nov 14 '11 at 19:41
Sorry but I haven't tried anything. I have no idea how PowerShell works. – Tsarl Nov 14 '11 at 20:09
You should try working it out with searches on here, Google, and/or looking at the Powershell documentation on MSDN. – Tom H. Nov 14 '11 at 21:00

closed as not a real question by Robert Harvey Nov 14 '11 at 22:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 3 down vote accepted

You can try this

Get-childItem constant* | % {rename-item $_.name ($_.name -replace '_',' ')}
Get-childItem constant* | % {rename-item $_.name ($_.name -replace 'constant ','')}
share|improve this answer
This will do two renames, though, which isn't necessary (see my answer). – Јοеу Nov 14 '11 at 22:57
# gather all files that match the criteria
Get-ChildItem constant_* |
   ForEach-Object {
      # remove the "constant_" from the beginning and replace _ by space.
      Rename-Item $_ ($_.Name -replace '^constant_' -replace '_', ' ')
   }

Or shorter:

ls constant_* | %{rni $_ ($_.Name -replace '^constant_' -replace '_', ' ')}
share|improve this answer

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