• 📢 Notice: Our community has moved to Zelo.cx! Visit us at Zelo.cx for the latest updates and discussions.

how do i remove capture from combo

narcorp

Guest
Rep
Rep
Vouches
0
0
0
Vouches
0
Posts
0
Likes
0
Bits
56 YEARS
56 YEARS OF SERVICE
(25 October, 2019 - 04:14 PM)Lucian Wrote: Show More
I really want you to know that you're fucking great!

Lol. No problem. Glad I could help.
 
Rep
0
0
0
Rep
0
Vouches
0
0
0
Vouches
0
Posts
1
Likes
0
Bits
2 YEARS
2 YEARS OF SERVICE
use a combo parser

if u need one dm me on discord nopeAZU#0001
[Image: 8AL1QcE.png]
 

Lucian

Divine
Divine
Lucian Rep
0
0
0
Rep
49
Lucian Vouches
0
0
0
Vouches
0
Posts
4,241
Likes
211
2 YEARS
2 YEARS OF SERVICE
(24 October, 2019 - 08:40 PM)Aotrx Wrote: Show More
(24 October, 2019 - 08:38 PM)Lucian Wrote: Show More
title

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 - 08:40 PM)Dayvx Wrote: Show More
when you remove duplicates it should remove the capture

Doesen't do the trick
[Image: vXMweB7.png]
 

Lucian

Divine
Divine
Lucian Rep
0
0
0
Rep
49
Lucian Vouches
0
0
0
Vouches
0
Posts
4,241
Likes
211
2 YEARS
2 YEARS OF SERVICE
(25 October, 2019 - 03:03 PM)foxegado Wrote: Show More
PowerShell yo.

Code:
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!
[Image: vXMweB7.png]
 

48,736

38,247

238,888

Top