0
我有這個字符串,如何去除某些字符或選擇字符串中的某個索引字符?
anyType{image0=images/articles/4_APRIL_BLACK_copy.jpg; image1=images/articles/4_APRIL_COLOR_copy.jpg; }
我想要的只是
"images/articles/4_APRIL_BLACK_copy.jpg"
我如何獲得呢?
我有這個字符串,如何去除某些字符或選擇字符串中的某個索引字符?
anyType{image0=images/articles/4_APRIL_BLACK_copy.jpg; image1=images/articles/4_APRIL_COLOR_copy.jpg; }
我想要的只是
"images/articles/4_APRIL_BLACK_copy.jpg"
我如何獲得呢?
這是我在我的應用程序中執行拆分的方式。
String link = "image0=images/articles/4_APRIL_BLACK_copy.jpg";
String[] parts = link.split("=");
String first = parts[0];
Log.v("FIRST", first);
String second = parts[1];
Log.v("SECOND", second);
這種方法將在「=」您的字符串分割成2,給你2個字符串。在你的情況下,String second
是你想要的結果。
這應該工作:
s.split("=")[1]
要拆分的=
字符串這將在一個數組的形式返回字符串。第二個元素是你需要的。
這是一個真正的問題嗎?不能相信這一點。 –
@userIsAMonkey:相信它。它實際上是。 ;-) –
認真,是的。我想到了 –