Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
区切られた文字列内の区切られた文字列の数を取得するために使用できる関数を誰か教えてもらえますか? たとえば、私が持っていた場合
String time = "hh:mm:ss";
、、の33 つの文字列が区切られているため、関数は戻り ます。hhmmss
3
hh
mm
ss
次のようなことを試してください:
"hh:mm:ss".split(":").length
splitメソッドの詳細については、こちらをご覧ください。
split