在 JavaScript 中删除字符串的第一个字符
在 JavaScript 中有很多方法可以删除字符串的第一个字符,下面讨论其中的一些:
方法一:使用 slice() 方法: slice() 方法提取字符串字符串返回提取的部分。如果我们想删除字符串的第一个字符,那么可以通过指定需要从中提取字符串的起始索引来完成。我们也可以对最后一个元素进行切片。
句法:
string.slice(startingindex, endingindex)
例子:
Delete first character
of a string
Click on button to display the
extracted part of the string
输出:
单击按钮之前:
点击按钮后:
方法 2:使用 substr() 方法:字符串.substring() 是 JavaScript 中的一个内置函数,用于返回给定字符串中从开始索引到结束索引的部分。索引从零 (0) 开始。
句法:
string.substring(Startindex, Endindex)
例子:
Delete first character
of a string
Click on button to display the
extracted part of the string
输出:
单击按钮之前:
点击按钮后:
方法 3:使用 replace() 方法:字符串.replace()函数是 JavaScript 中的一个内置函数,用于将给定字符串的一部分替换为其他字符串或正则表达式。原始字符串将保持不变。
句法:
string.replace(searchvalue, newvalue)
例子:
Delete first character
of a string
Click on button to display the
extracted part of the string
GeeksforGeeks
输出:
单击按钮之前:
点击按钮后: