在编程中,我们经常需要获取拆分字符串数组的最后一个元素。以下是一些常见编程语言的代码示例:
string = "hello.world"
split_string = string.split(".")
last_element = split_string[-1]
print(last_element)
const string = "hello.world";
const splitString = string.split(".");
const lastElement = splitString[splitString.length - 1];
console.log(lastElement);
String string = "hello.world";
String[] splitString = string.split("\\.");
String lastElement = splitString[splitString.length - 1];
System.out.println(lastElement);
string s = "hello.world";
string[] splitString = s.Split('.');
string lastElement = splitString[splitString.Length - 1];
Console.WriteLine(lastElement);
在这些示例中,我们首先使用 split 函数将字符串拆分为数组,然后使用数组的长度减去 1 作为索引来获取最后一个元素。
领取专属 10元无门槛券
手把手带您无忧上云