如何在 JavaScript 中获取字符串的最后一个字符?
给定一个长度为len的字符串,任务是获取字符串。有很多方法可以解决这个问题,下面讨论其中的一些:
方法 1:使用 charAt()函数:此函数返回给定索引处的字符。
句法:
character = str.charAt(index)
首先使用str.length函数计算给定字符串中的字符数。由于索引从 0 开始,因此使用str.charAt(str.length-1)获取字符串的最后一个字符。
例子:
Get the last character
of a string
Given String: GeeksforGeeks
Click on button to display the
last character
输出:
- 在点击按钮之前:
- 点击按钮后:
方法 2:使用 str.slice()函数:字符串.slice()函数用于返回给定输入字符串的一部分或切片。
句法:
str.slice(startingindex, endingindex)
示例:本示例使用 slice()函数获取字符串的最后一个字符。
Get the last character
of a string
Given String: GeeksforGeeks
Click on button to display the
last character
输出:
- 在点击按钮之前:
- 点击按钮后: