DateFormats

SearchOptions.DateFormats property

获取日期范围搜索的日期格式集合。 默认日期格式为“dd.MM.yyyy”、“MM/dd/yyyy”和“yyyy-MM-dd”。

public DateFormatCollection DateFormats { get; }

适当的价值

日期范围搜索的日期格式集合。

例子

该示例演示了如何设置搜索的日期格式。

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
string query = "Einstein";

Index index = new Index(indexFolder); // 在指定文件夹中创建索引
index.Add(documentsFolder); // 索引指定文件夹中的文档

SearchOptions options = new SearchOptions();
options.DateFormats.Clear(); // 删除默认日期格式
DateFormatElement[] elements = new DateFormatElement[]
{
    DateFormatElement.MonthTwoDigits,
    DateFormatElement.DayOfMonthTwoDigits,
    DateFormatElement.YearFourDigits,
};
// 创建日期格式模式 'MM/dd/yyyy'
DateFormat dateFormat = new DateFormat(elements, "/");
options.DateFormats.Add(dateFormat);

SearchResult result = index.Search(query, options); // 在索引中搜索

也可以看看