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.
Java の文字列から次の部分文字列を抽出する方法。
string var=fill x [0,4,4,4] #1000ff
fill x(空白あり)のみを抽出したい。
fill x
誰でも私を助けることができますか?
これを試して:
String result = var.substring(0,var.indexOf("["));