fork download
  1. public class Main {
  2. public static void main(String[] args) {
  3. String id = "3 3";
  4. if (id.matches(".*[\\s ].*")){
  5. System.out.println("IDの中に空白が存在しています。");
  6. } else {
  7. System.out.println("IDの中に空白が存在していません。");
  8. }
  9. }
  10. }
Success #stdin #stdout 0.1s 48076KB
stdin
Standard input is empty
stdout
IDの中に空白が存在しています。