2
A
回答
4
(get-content file.txt) -replace '\.',"`n" | out-file newfile.txt
-replace操作符使用正則表達式匹配,因此您需要轉義點以使其匹配字面點。否則,它會替換該文件中的每個字符。
2
足夠簡單:
Get-Content C:\Imagine_Lyrics.txt | % {$_.Replace('.', "`n")} | Out-File C:\Imagine_Lyrics2.txt -Encoding ASCII
+0
我想你忘了關支架。 – expirat001 2012-02-11 16:04:55
+0
Whoopsy,謝謝@ expirat001 :-) – 2012-02-11 16:06:22
相關問題
- 1. 使用PowerShell中
- 2. GPG使用PowerShell
- 3. 使用PowerShell
- 4. 使用PowerShell的
- 5. 使用PowerShell
- 6. 使用PowerShell
- 7. 使用PowerShell
- 8. 使用PowerShell
- 9. 使用PowerShell
- 10. 與使用PowerShell
- 11. 使用PowerShell
- 12. Retreive使用PowerShell
- 13. 使用PowerShell
- 14. 在使用PowerShell
- 15. 使用PowerShell
- 16. 使用PowerShell
- 17. 使用PowerShell
- 18. 使用Powershell
- 19. 使用PowerShell
- 20. CSV使用PowerShell
- 21. 使用PowerShell
- 22. 與使用PowerShell
- 23. XML使用PowerShell
- 24. 使用PowerShell 1.0
- 25. ExtractAssociatedIcon使用PowerShell
- 26. 使用PowerShell的
- 27. 使用PowerShell
- 28. 使用PowerShell
- 29. 使用powershell
- 30. 使用PowerShell
它的工作原理,謝謝。 – expirat001 2012-02-11 16:05:22