• 📢 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

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
title
[Image: vXMweB7.png]
 
Rep
0
0
0
Rep
0
Vouches
0
0
0
Vouches
0
Posts
1
Likes
0
Bits
3 YEARS
3 YEARS OF SERVICE
(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
DISCORD:Kunaii#8179
If you have any questions about me, ask. Fiesta
 

Ulysses

Royal
Royal
Rep
0
0
0
Rep
0
Vouches
0
0
0
Vouches
0
Posts
1
Likes
0
Bits
3 YEARS
3 YEARS OF SERVICE

narcorp

Guest
Rep
Rep
Vouches
0
0
0
Vouches
0
Posts
0
Likes
0
Bits
56 YEARS
56 YEARS OF SERVICE
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()
 

48,736

38,247

238,888

Top