Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 733 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 733 Bytes

Angular2-Read-CSV-File

Sample Angular2 app to Read .csv file in Angular2. Application read, parse and display csv file contents using Angular2.

Sample application features:

  1. It provides configurable on/off validations feature as shown below.
export class Constants {
    static tokenDelimeter = ",";
    static isHeaderPresentFlag = true;
    static validateHeaderAndRecordLengthFlag = true;
    static valildateFileExtenstionFlag = true;
}
  1. Configurable token delimeter.

Detailed examplation: https://javabypatel.blogspot.com/2017/07/read-csv-file-in-angular2.html