Correctly parsed
http://stackoverflow.com/questions/tagged/java
http://stackoverflow.com/questions/tagged/java+linux
http://stackoverflow.com/questions/tagged/c++
Incorrectly parsed
http://stackoverflow.com/questions/tagged/java+c++
Parsed as 'java' + 'c' + '' + ''
http://stackoverflow.com/questions/tagged/c+++java
Parsed as 'c' + '' + '' + 'java'
Replacing the + characters with the encoded form %2B gives the same result:
http://stackoverflow.com/questions/tagged/java+c%2B%2B
Parsed as 'java' + 'c' + '' + ''
http://stackoverflow.com/questions/tagged/c%2B%2B+java
Parsed as 'c' + '' + '' + 'java'