Reputation: 417
My Requirement is to upload only files that ends with.pdf extension in Angular 2 is there any method to find the extension or like any split method in java.
Upvotes: 4
Views: 22249
Reputation: 156
you can use split with pop for the file extension :
$(this).fileName.split('.').pop();
Upvotes: 12