wohali commented on issue #1415: mango $regex Search with special character throw a bad request when input a string contains "+++" URL: https://github.com/apache/couchdb/issues/1415#issuecomment-400763347 You've specified an invalid regex. `+` is a special character in regex syntax meaning "1 or more of the preceding token." Multiple `+` in a row is invalid without escaping the character. Try `"$regex": "(?i)F4647868\+\+\+" and it should work fine.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
