isnullxbh Asked:2020-10-06 18:11:18 +0800 CST2020-10-06 18:11:18 +0800 CST 2020-10-06 18:11:18 +0800 CST 在 JS 中使用切片 772 在这种情况下是否可以在 JS 中使用切片: substr = str[index:] 如何在 Python 中做到这一点。或者,如果有其他更方便的类似物substr()- 请告诉我。 javascript 1 个回答 Voted Best Answer Alex Sharovsky 2020-10-06T18:37:31+08:002020-10-06T18:37:31+08:00 JS 中最接近的类比是slice const str = 'example'; console.log(str.slice(0,2)); // 'ex' console.log(str.slice(4)); // 'ple' console.log(str.slice(-2)); // 'le' console.log(str.slice(1,-1)); // 'xampl'
JS 中最接近的类比是
slice