Skip to content

Instantly share code, notes, and snippets.

@DevEarley
Last active April 20, 2020 01:24
Show Gist options
  • Save DevEarley/c7499c8cc583baa917d29f7bc8d727b0 to your computer and use it in GitHub Desktop.
Save DevEarley/c7499c8cc583baa917d29f7bc8d727b0 to your computer and use it in GitHub Desktop.
RegEx for matching lower case values
this.filteredItems = this.listOfItems.filter(textToMatch => {
let regExMatch = new RegExp(sourceText.toLowerCase(), "g");
const result = textToMatch.toLowerCase().match(regExMatch)
return result != null && result.length > 0;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment