- public class Test6 {
- public static void main(String[] args) {
- // 定义一个字符串s用来接收获取的文件扩展名
- String s = "abc.txt.java";
- // 定义一个字符串str用来接收返回的扩展名字符串
- String str = getSuffix(s);
- // 打印输出扩展名字符串
- System.out.println(str);
- }
-
-
- // 定义函数,接收一个字符串,返回一个字符串
- public static String getSuffix(String s) {
- // 获取"."最后一次出现的角标
- int index = s.lastIndexOf(".");
- // 截取"."之后的字符串并返回
- return s.substring(index + 1);
- }
- }
复制代码 |