This is a bump
[#1] FixCombo - The Most Powerful Combo Editor ! [#UPDATES]
#11
Posted 16 October 2020 - 08:36 AM
#12
Posted 16 October 2020 - 01:15 PM
I do not want to sales trash but this is just a string/file manipulation tool not worth $15.
Remove duplicates:
List<string> lines = new List<string>(); lines.AddRange(System.IO.File.ReadAllLines(file)); lines = lines.Distinct().ToList();Remove empty lines:
for(int i = 0; i < list.Count; i++){ if(list[i].Length == 0) list.RemoveAt(i); }Combine multiple text files:
File.AppendAllLines("Combined.txt", list1); File.AppendAllLines("Combined.txt", list2); .........
this code is generally pretty shitty. if you want it to support millions or billions of lines you should look into advanced stuff, which do be worth $15.
#13
Posted 18 October 2020 - 02:46 PM
#14
Posted 19 October 2020 - 01:12 PM
#15
Posted 20 October 2020 - 05:31 PM
#16
Posted 21 October 2020 - 05:22 PM
#17
Posted 22 October 2020 - 08:51 AM
+Vouch ! The editor have a lot of options and can turn your combo to hq one. Tried editing public combos with initially <10 hits on checking on my private site, got more than 30 hits after that. You just need to know what to edit with regards to the site requirement
Tired
#18
Posted 23 October 2020 - 01:09 PM
#19
Posted 24 October 2020 - 05:37 PM
#20
Posted 26 October 2020 - 12:35 PM
Users browsing this thread: