So, in HTML i have this input with which I read a File.
<div class="form-group">
<label for="file">Choose File</label>
<input type="file" id="file"(change)="function($event.target.files)">
</div>
Now, if i upload a csv File, i can use it in the Code as a csv-file-object as far as i know.
My problem is, that I need all the data from the csv file as a string.
How can i convert the data from the file into a string?