I am getting data from a JSON file, which I'm binding on an HTML page by {{regular expression}}.
I want to display only the first 5 characters of the number (including the dot). For example, if the number is "123.4567", I want to display only "123.4", so I apply {{ exp | limitTo: 5 }}
. But if the number is "1234.567", then that evaluates to "1234", which I don't want; I want only "1234".
How can I achieve this?