Another Analyzer. Every char which is not a letter or digit is treated as a word separator. [Name.Surname@gmail.com 123.456 ğüşıöç%ĞÜŞİÖÇ$ΑΒΓΔΕΖ#АБВГДЕ SSß] will be tokenized as [name surname gmail com 123 456 gusioc gusioc αβγδεζ абвгде ssss] No problem with searches like someuser@gmail or 123.456 since they are converted to phrase-query as "someuser gmail" or "123 456".

Namespace: Lucene.Net.Analysis.Ext
Assembly: Lucene.Net.Contrib.Core (in Lucene.Net.Contrib.Core.dll) Version: 2.9.2.0 (2.9.2)

Syntax

C#
public class UnaccentedWordAnalyzer : Analyzer
Visual Basic
Public Class UnaccentedWordAnalyzer _
	Inherits Analyzer
Visual C++
public ref class UnaccentedWordAnalyzer : public Analyzer

Inheritance Hierarchy

System..::..Object
  Lucene.Net.Analysis..::..Analyzer
    Lucene.Net.Analysis.Ext..::..UnaccentedWordAnalyzer

See Also