Created
March 19, 2014 03:25
-
-
Save litera/9634958 to your computer and use it in GitHub Desktop.
string.Format for AngularJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* AngularJS string.Format filter | |
* | |
* This filter provides string variable replacement similar to C# string.Format("{0}", "something"); | |
* | |
* Usage: {{ "From model: {0}; and a constant: {1};" | format:model.property:"constant":...:... }} | |
*/ | |
(function (angular) { | |
angular | |
.module("ng") | |
.filter("format", function () { | |
return function (input) { | |
var args = arguments; | |
return input.replace(/\{(\d+)\}/g, function (match, capture) { | |
return args[1*capture + 1]; | |
}); | |
}; | |
}); | |
})(angular); |
I guess you probably found a solution for that, however I will answer that for any future questions:
You can use that through $filter. In your controller parameters inject $filter so you can use any filter inside your controller by simply passing its name as a parameter, like this:
var value = $filter('filterName')(input);
Instead of using Number() for the parsing to a number you can add a + in front of it. Like return args[+capture + 1];
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how to call this filter inside the controller