Java の文字列に 2 回目のスペースが出現した後のテキストを削除したいと考えています。正規表現は使用しないでください。
入力:
String S1 = "VOLKSWAGEN OF SANLEANDRO";
String S2 = "Stack Overflow Site";
String S3 = "Java Learning"; -- there is only one space
出力:
VOLKSWAGEN OF
Stack Overflow
Java Learning // as there is no second space entire string should be displayed