首先,我是 javascript 新手。
我的问题:
假设我有一个这样的字符串
var str = "John Doe in the name used for people with no identity";
我需要一个带有 3 个参数的函数,例如
pullSubstring(text, string, number)
它将返回一个像这样的新字符串
*length of the number in strings* + string + *length of the number in strings*
更具体地说,这里有一个例子:
如果我这样调用函数
pullSubstring("for", "John Doe in the name used for people with no identity", 5)
结果会是这样"used for peop"
。