This post is by a banned member (FastDelivery) - Unhide
OP 24 October, 2019 - 10:38 PM
Reply
This post is by a banned member (Kunaii) - Unhide
24 October, 2019 - 10:40 PM
Reply
(24 October, 2019 - 10:38 PM)Lucian Wrote: Show Moretitle
you can just do the replace thing in notepad, and replace it with nothing
DISCORD: Kunaii#8179
If you have any questions about me, ask.
This post is by a banned member (blackbull) - Unhide
24 October, 2019 - 10:40 PM
(This post was last modified: 24 October, 2019 - 10:41 PM by blackbull.)
Reply
use a combo parser
if u need one dm me on discord nopeAZU#0001
This post is by a banned member (FastDelivery) - Unhide
OP 24 October, 2019 - 10:44 PM
(This post was last modified: 24 October, 2019 - 10:45 PM by FastDelivery.)
Reply
(24 October, 2019 - 10:40 PM)Aotrx Wrote: Show More (24 October, 2019 - 10:38 PM)Lucian Wrote: Show Moretitle
you can just do the replace thing in notepad, and replace it with nothing
Got 12k lines with different captures. the replace method won't work
(24 October, 2019 - 10:40 PM)Dayvx Wrote: Show Morewhen you remove duplicates it should remove the capture
Doesen't do the trick
This post is by a banned member (Ulysses) - Unhide
24 October, 2019 - 10:53 PM
Reply
(24 October, 2019 - 10:44 PM)Lucian Wrote: Show More (24 October, 2019 - 10:40 PM)Aotrx Wrote: Show More (24 October, 2019 - 10:38 PM)Lucian Wrote: Show Moretitle
you can just do the replace thing in notepad, and replace it with nothing
Got 12k lines with different captures. the replace method won't work
Find a character in common with every line and extract the combolist with
https://www.browserling.com/tools/extract-column.
This post is by a banned member (UberFuck) - Unhide
25 October, 2019 - 05:03 PM
Reply
PowerShell yo.
Code:
$InputPath = "C:\temp\ComboWCapture.txt"
$OutputPath = "C:\temp\ComboNoCapture.txt"
$sw = New-Object System.IO.StreamWriter $OutputPath
$cnt = 0
foreach ($line in [System.IO.File]::ReadLines($InputPath))
{
$cnt++
if($cnt % 1000 -eq 0) #only show progress every 1000...more frequent progress updates will slow things down
{
Write-Progress -Activity "Processing File $InputPath" -Status "Current Line: $cnt"
}
$splitline = $line.Split('|')
$sw.WriteLine(([string]$splitline[0]).Trim())
}
$sw.Close()
This post is by a banned member (FastDelivery) - Unhide
OP 25 October, 2019 - 06:14 PM
Reply
(25 October, 2019 - 05:03 PM)foxegado Wrote: Show MorePowerShell yo.
Code:
$InputPath = "C:\temp\ComboWCapture.txt"
$OutputPath = "C:\temp\ComboNoCapture.txt"
$sw = New-Object System.IO.StreamWriter $OutputPath
$cnt = 0
foreach ($line in [System.IO.File]::ReadLines($InputPath))
{
$cnt++
if($cnt % 1000 -eq 0) #only show progress every 1000...more frequent progress updates will slow things down
{
Write-Progress -Activity "Processing File $InputPath" -Status "Current Line: $cnt"
}
$splitline = $line.Split('|')
$sw.WriteLine(([string]$splitline[0]).Trim())
}
$sw.Close()
I really want you to know that you're fucking great!
This post is by a banned member (UberFuck) - Unhide
25 October, 2019 - 06:52 PM
Reply
(25 October, 2019 - 06:14 PM)Lucian Wrote: Show MoreI really want you to know that you're fucking great!
Lol. No problem. Glad I could help.