DateFormat

DateFormat class

날짜 형식을 나타냅니다.

public class DateFormat

생성자

이름 설명
DateFormat(DateFormatElement[], string) 의 새 인스턴스를 초기화합니다.DateFormat 클래스.
DateFormat(string, DateFormatElement[]) 의 새 인스턴스를 초기화합니다.DateFormat 클래스.

속성

이름 설명
DateSeparator { get; } 날짜 구분 기호를 가져옵니다.

행동 양식

이름 설명
override ToString() 반환String 현재를 나타내는DateFormat .

비고

더 알아보기

이 예제는 클래스의 일반적인 사용법을 보여줍니다.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
string query = "daterange(2017-01-01 ~~ 2019-12-31)";

Index index = new Index(indexFolder); // 지정된 폴더에 인덱스 생성
index.Add(documentsFolder); // 지정된 폴더에서 문서 인덱싱

SearchOptions options = new SearchOptions();
options.DateFormats.Clear(); // 기본 날짜 형식 제거
DateFormatElement[] elements = new DateFormatElement[]
{
    DateFormatElement.MonthTwoDigits,
    DateFormatElement.DateSeparator,
    DateFormatElement.DayOfMonthTwoDigits,
    DateFormatElement.DateSeparator,
    DateFormatElement.YearFourDigits,
};
// 날짜 형식 패턴 'MM/dd/yyyy' 생성
DateFormat dateFormat = new DateFormat(elements, "/");
options.DateFormats.Add(dateFormat);

SearchResult result = index.Search(query, options); // 인덱스에서 검색

또한보십시오