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 でも機能する必要があります。