//获得""/home/henry",并且不需要前面的"/"
String oo=path.substring(0,path.lastIndexOf("/",path.lastIndexOf("/")-1));
//"-1"代表在定位时往前取一位,即去掉"/"
//从path.lastIndexOf("/")-1位置开始向前寻找倒数第二个"/"的位置
//最后用substring()方法来进行截取
System.out.println(oo);
截取倒数第二个"/"之后的字符串
String path="/home/henry/Desktop/1.txt";
//获得"Desktop/1.txt",并且不需要前面的"/"
String oo=path.substring(path.lastIndexOf("/",path.lastIndexOf("/")-1)+1);
//"+1"代表在定位时往后取一位,即去掉"/"
//"-1"代表以"/"字符定位的位置向前取一位
//从path.lastIndexOf("/")-1位置开始向前寻找倒数第二个"/"的位置
System.out.println(oo);
python input输入多个变量 python输入多个变量值
Python零基础入门自学笔记本文记录的主要是Python运用的基础知识。0. 变量0.0 多个变量用分号;隔开x = 3; y = 5; z = 70.1 多个变量可以同时赋同一个值x = y = z = 30.2 交换变量y,z,x = x,y,z
z,a,x = x,y,z #当然可以有新变量1. 输入输出1.0 input() 输入input("显示输入提示")
temp = input(