Skip to content

Instantly share code, notes, and snippets.

@jonniedarko
Created October 12, 2016 20:26
Show Gist options
  • Save jonniedarko/b66831a4e64b7511002a8261fac9243f to your computer and use it in GitHub Desktop.
Save jonniedarko/b66831a4e64b7511002a8261fac9243f to your computer and use it in GitHub Desktop.

Let's say you make a filter that can replace things with regular expressions:

myApp.filter("regexReplace", function() { // register new filter

  return function(input, searchRegex, replaceRegex) { // filter arguments

    return input.replace(RegExp(searchRegex), replaceRegex); // implementation

  };
});

Invocation in a template to censor out all digits:

<p>{{ myText | regexReplace: '[0-9]':'X' }}</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment