Dubletten im JS Array finden und löschen

Beim aktuellen Kunden aus der Schweiz, werden die Postleitzahlen über eine CSV geladen und in ein Array gesteckt. Kann man machen aber was nicht geht, dass das CSV über 1000 Dubletten enthält. Also 1000,1000,1000,1000,1000,1000,1001,1001,1002 und so weiter. Meine erste Amtshandlung war die Bereinigung der Dubletten. Dafür habe ich folgendes JS Script geschrieben.

function readCSVFile(file)
{
	var raw = new XMLHttpRequest();
	rawText.open("GET", file, true);
	rawText.onreadystatechange = function ()
	{
		if(rawText.readyState === 4)
		{
			if(rawText.status === 200 || rawText.status == 0)
			{
				let string = rawText.responseText;
				let _arr = string.split(",");
				let arr = eliminateDuplicates(_arr);
				console.log(“string“, arr.toString());
			}
		}
	}
	rawText.send(null);
}

function eliminateDuplicates(arr) {
	let i,
		len = arr.length,
		out = [],
		obj = {};

		for (i = 0; i < len; i++) {
			obj[arr[i]] = 0;
		}
	
		for (i in obj) {
			out.push(i);
	  	}
	
		return out;
}	
		
let csvFile = “dublettenDatei.csv“
readCSVFile(csvFile)

Die Ausgabe habe ich dann in die Konsole geschrieben und somit konnte ich es einfach kopieren um es in die neue CSV Datei dublettenFreieDatei.csv zu kopieren.


Leave a Comment

Your email address will not be published. Required fields are marked *

*

*

Empfholende Artikel


Alphanumeric sorting of an array with objects according to the value of an object

June 30, 2022

Especially in the frontend it happens quite often that you want to sort an array, an array with objects according to a certain pattern. Javascript has very performant and nice functions. But you can use these functions not only in the frontend. If you write your backend with NodeJS you will also appreciate the array […]

JS reduce()

March 21, 2022

Man hat ein array und möchte zum Beispiel alle Zahlen im Array kumulieren. Mit der Javascript Array Function reduce() geht das ganz leicht.

Return days of a month in an array

March 14, 2022

You need all days of a certain month then you can use this function: getDaysInMonth = (month,year) => new Date(year, month, 0).getDate();console.log( […Array(getDaysInMonth(3, 2022)).keys()] ); Greets!

JS flat()

March 9, 2022

Es kommt schon mal vor das man geschachtelte arrays bekommt.Zum Beispiel: Man möchte aus einem geschachteltem Array alle Werte in einem Array sammeln. Mit der array Funktion flat() ist das kein Problem. Auch mehrstuffig verschachtelte Arrays kann man geradeziehen (flatten). Indem man der flat Funktion die Anzahl der verschachtelungen die aufgelöst werden sollen, mitgibt. Da […]

JS bind()

March 8, 2022

Ein einfaches besipiel um JS bind() function zu verdeutlichen:

Javascript – Fakultät berechnen

January 19, 2022

Ab und an braucht man das und nicht nur in der Kombinatorik. Wer es etwas übersichtlicher braucht (und dazu zähle ich mich auch) kann es auch in einer for schleife machen.