-1

我有一个数组,其中包含:

http://amazon.com/index.php
漫画http://mangareader.net
教程http://stackoverflow.com

我想得到第一个词,所以我想要的结果是:

书籍
漫画
教程

感谢您的帮助

4

4 回答 4

1

使用拆分方法:

// assume your array variable is arr
for(String s : arr) {
  String[] words = s.split(" ");
  String firstWord = null;
  if(words.length > 0) firstWord = words[0];
}
于 2013-06-22T02:31:43.910 回答
1

尝试这个

String w = str.substring(0, str.indexOf(' '));
于 2013-06-22T02:35:16.060 回答
0

您可以使用函数split()来实现这一点。

于 2013-06-22T02:32:52.957 回答
0

这将起作用

       String[] stt= new String[]{"Book http://amazon.com/index.php","Manga http://mangareader.net","Tutorial http://stackoverflow.com"};
       for(int i=0;i<stt.length;i++){

        String sst=stt[i].substring(0, stt[i].indexOf(' '));
        System.out.println(sst);
    }
于 2013-06-22T06:21:41.450 回答