Files
30-seconds-of-code/snippets/ends-with-substring.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

802 B

title, shortTitle, tags, cover, author, firstSeen
title shortTitle tags cover author firstSeen
String ends with substring Ends with substring string boutique-home-office-4 chalarangelo 2022-08-01T05:00:00-04:00

Checks if a given string ends with a substring of another string.

  • Use a for...in loop and String.prototype.slice() to get each substring of the given word, starting at the end.
  • Use String.prototype.endsWith() to check the current substring against the text.
  • Return the matching substring, if found. Otherwise, return undefined.
const endsWithSubstring = (text, word) => {
  for (let i in word) {
    const substr = word.slice(0, i + 1);
    if (text.endsWith(substr)) return substr;
  }
  return undefined;
};
endsWithSubstring('Lorem ipsum dolor sit amet<br /', '<br />'); // '<br /'