4

C++ の "std::string::find_first_of" に相当する Java はありますか?

 string string1( "This is a test string!");
 int location = string1.find_first_of( "aeiou" );
 //location is now "2" (the position of "i")

これと同じ機能を実現する最も簡単な方法は何ですか?

編集: また、提案されたソリューションは Android でも機能する必要があります。

4

4 に答える 4

1

StringUtils.indexOfAny を使用します。ここにリンクがありますhttp://commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/StringUtils.html

于 2013-06-28T17:24:36.723 に答える