date-manip / compile
compile
函数
default()
default(
formatString
):CompileResult
定义于: src/compile.ts:54
Compile a format string into a regular expression and extract date parts. 编译格式字符串,生成正则表达式和匹配的日期部分
参数
formatString
string
The format string to compile. (要编译的格式字符串。)
返回
CompileResult
A compiled result object containing the regular expression pattern and extracted date parts. (包含正则表达式模式的编译结果对象,以及提取的日期部分。)
示例
ts
compile('YYYY-MM-DD HH:mm:ss.SSS');
// {
// pattern: '(\\d{1,4})-(\\d{1,2})-(\\d{1,2}) (\\d{1,2}):(\\d{1,2}):(\\d{1,2})\\.(\\d{1,3})',
// tokens: ['YYYY', 'MM', 'DD','HH', 'mm', 'ss', 'SSS']
// }