By using below filter we will replace the text in angular js
angular.module('surgi') .filter('ReplaceBreak', function() { return function(input) { input = input || ''; html = ''; var br_arr = input.split('<br>'); for(var i=0;i<br_arr.length;i++){ html += br_arr[i]+', '; } html = html.substring(0, html.length - 2); html = html.replace(/,\s*$/, ""); return html; }; });
You might also like:
Simple Array Sum | Javascript | hackerrank.com07-05-2020 hackerrank.com javascript arrays array sum |
Compare the Triplets | Javascript | hackerrank.com07-05-2020 hackerrank.com |
How to use request module in node js16-03-2017 request module node js |
Filter for change Date format (MM-dd-yyyy) in Angular Js05-03-2017 mm-dd-yyyy date formats angular js |
Email validation regular expression in javascript22-02-2017 email validation regex |