Holisticz - Embrace the Infinite

Step into the world of endless opportunities and unlock the gateway to virtual transactions.

  • Domain Update: Our Forum has moved! Please visit us at Holisticz.com for the latest updates.

how do i remove capture from combo

narcorp

Guest
(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.
 

0

0%

Status

Offline

Posts

1

Likes

0

Rep

0

Bits

0

1

Years of Service

use a combo parser

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

Lucian

Divine
Divine Contributor Premium Reverser

0

0%

Status

Offline

Posts

4,241

Likes

211

Rep

49

1

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 Contributor Premium Reverser

0

0%

Status

Offline

Posts

4,241

Likes

211

Rep

49

1

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,676

38,236

238,827

Top