Forum Discussion
extract http data
I dont know if I miss a point in your code, but in the first line, the Where-Object {$_.Extension -like "https://"}
I don't think this is a valid file extension.
an Empty file in the export means an empty result, lets try the first step
what is the output of this line
$items = Get-ChildItem -LiteralPath "E:\Backup_Testinstance\" | Where-Object {$_.Extension -eq "http://"}
- Shree2280Jan 27, 2021Brass Contributor
I tried this but getting http plus some records i do not want records after space
Get-ChildItem -Path C:\check\two -recurse | Select-String -Pattern "http://" | ` Select-Object -Property Path,LineNumber,Line | ` Export-CSV "C:\check\ResultFile.csv"
Shree
- Shree2280Jan 27, 2021Brass Contributor
- farismalaebJan 27, 2021Iron Contributor
OK, would you please post a sample of the text file you are reading from.
and also explain a bit more on how the result should look like
Just to give you a small hint, what you need to do is using Regex, but I will wait for your reply to confirm.