By using filters convert text to camel case.
angular.module('test') .filter('TextCamelCase', function() { return function(input) { input = input || ''; return input.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}); }; });
You might also like:
How to search text in string using php ?29-10-2017 php search string search |
How To Get Your Blogs Posts Using Blogger API30-07-2017 blogger api json php |
How to get id by using name attribute in javascript20-03-2017 html id name javascript |
Navigate to another page using java script06-03-2017 javascript redirection navigation |
How to remove last / value from url in javascript27-02-2017 array javascript last value |