Suppose I have this block of code:
String x = "Hello ++ World!";
if(x.contains(" ++ "))
    System.out.println(x.split(" ++ ")[0]);
Why is it that when I execute this code I receive the output:
- Hello ++ World!instead of- Hello?
It obviously has something to do with the split(), however, I can't figure it out.
 
     
     
     
    