JavaScript 中无限扩展的字符串中的子字符串
我们需要编写一个 JavaScript 函数,该函数接收一个字符串作为第一个参数,将第二个参数作为开始索引,将第三个参数作为结束索引。该函数应查找,如果将作为第一个参数提供的该字符串无限扩展,每次都将相同的字符串附加到其尾部,将用开始索引和结束索引封装的子字符串是什么。
例如 −
如果输入字符串和索引是 −
const str = 'helloo'; const start = 11; const end = 15;
则输出应为 −
const output = 'hel';
示例
以下是代码 −
const str = 'helloo'; const start = 12; const end = 15; const findSubstring = (str = '', start, end) => { let n = str.length; let t = start / n; start = start % n; end -= t * n; let res = str.substring(start, end - start); if (end > n){ t = (end - n) / n; end = (end - n) - t * n; while (t --) { res += str; } res += str.substring(0, end); }; return res; }; console.log(findSubstring(str, start, end));
输出
以下是控制台输出 −
hel
广告