Hi I'm using Lucene 4.10.4. QueryParser in LUCENE_30 forms phrase query for input with special characers ($,/,-,...)
For eg: For input *google-chrome-stable*, query formed as "google chrome stable". Using QueryParser(Version matchVersion, String f, Analyzer a) <https://lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/util/Version.html> , I pass the version as LUCENE_30 and achieved this behavior. But in Lucene 6.x this constructor is removed. Is there any way to achieve this in Lucene 6.x ?