我想为第一点获取图像和 substr 的描述如何在 android 中执行此操作?
示例我有一些文字
文本这是文本,文本。teeext wrwerwr bla bla
你好,给我一个
文本这是文本,文本。
这该怎么做?
假设您知道您的描述中只有一点:
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "Text this is text, texxt. teeext wrwerwr bla bla";
String newstr="";
if(null!=str && str.length() > 0 ){
int endIndex = str.lastIndexOf(".");
if(endIndex != -1) {
newstr = str.substring(0, endIndex); // not forgot to put check if( endIndex != -1)
}
}
System.out.println(newstr);
}
如果有多个点:
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = "Text this is text, texxt. teeext wrwerwr bla bla";
if(null!=str && str.length() > 0 ){
String [] strings = str.split("\\.");
System.out.println(strings[0]);
}
}
您不需要正则表达式,只需看看这个:String.subSequence