Hi PowerSheller,
Here is my sample script:
Get-Content aa.txt | ForEach-Object { $_ -replace " ","2"} #ForEach-Object { $_ -replace " ","`t"}
I need multiple tab. for example:
if("2" -eq "`t`t")
.............
else if("3" -eq "`t`t`t")
.............
How to i do that?
Thanks