โ๏ธ Feature 1
Edit & Add
๐งน Feature 2
Remove Duplicates
๐ Feature 3
Convert Format
๐ Feature 4
Multi-Copy Edit
๐ Feature 5
Invert Letters
๐ Feature 6
Analyze Lines
โ๏ธ Delete last N letters from each line and add custom letters at the end (Works with S:SBSSBBSB format)
Before: S:SBSSBBSB (delete 2, add SSS)
After: S:SBSSBBSSS
๐งน Scan entire file, find duplicate/repeated lines and remove ALL duplicates. Keeps only the FIRST occurrence of each line.
Total lines:
0
Duplicate lines found:
0
Lines after removal:
0
๐ Convert each line to compact format by removing spaces, commas, braces and extracting only letters (S/B). Choose your prefix format!
Before: new() { "S", "B", "S", "S", "B", "B", "S", "B", "B", "S", "S" },
Option 1 After: S:SBSSBBSBBSS
Option 2 After: B:BSBBSSBBSBS
Total lines:
0
Lines converted:
0
๐ Create 5 copies of your file, each with different letters added at the end. All copies combined into one downloadable file!
Input: S:SBSSBBSB (3 lines)
Output: 15 lines total (5 copies ร 3 lines)
Copy 1: adds "A", Copy 2: adds "SS", Copy 3: adds "CSS", etc.
Original lines:
0
Total output lines:
0
Copies created:
5
๐ Invert all letters in each line: Change every "S" to "B" and every "B" to "S" (including the prefix)
Before: S:SBSSBBSBBSSBB
After: B:BSBBSSBSSBBSS
Before: B:BSBBSSBS
After: S:SBSSBBSB
Total lines:
0
Lines inverted:
0
๐ Analyze file to find lines where the first letter (prefix) matches the ending letter. Shows matching vs unique lines count.
Example Input:
S:SBSSBBSBBSSBB โ First: S, Last: B (No match)
S:SBSSBBSBBSSBS โ First: S, Last: S (โ Match)
B:SBSSBBSBB โ First: B, Last: B (โ Match)
Result:
Matching lines: 2
Unique lines: 1
Total lines analyzed:
0
First & Last letter matching:
0
Unique lines (no match):
0