碎片時(shí)間學(xué)編程「350]:字符串以子字符串結(jié)尾

檢查給定字符串是否以另一個(gè)字符串的子字符串結(jié)尾。
使用 for...in 循環(huán)和 String.prototype.slice() 方法從末尾開始獲取給定單詞的每個(gè)子字符串。
使用 String.prototype.endsWith() 方法根據(jù)文本檢查當(dāng)前子字符串。
如果找到,則返回匹配的子字符串。否則,返回未定義。
JavaScript
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 /'
更多內(nèi)容請(qǐng)?jiān)L問我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: