我正在嘗試編寫一個匹配正則表達式的有限閉合模式的語法(即foo {1,3}匹配1到3'o'在'fo'前綴後面出現)匹配正則表達式的有限閉合模式({x,y})
要將字符串{x,y}識別爲有限閉包,它不得包含空格,例如{1,3}被識別爲一個由7個字符組成的序列。
我寫了下面的詞法分析器和解析器文件,但我不確定這是否是最佳解決方案。我正在使用一個詞法模式來處理封閉模式,當正則表達式匹配一個有效的閉包表達式時,它將被激活。
lexer grammar closure_lexer;
@header { using System;
using System.IO; }
@lexer::members{
public static bool guard = true;
public static int LBindex = 0;
}
OTHER : .;
NL : '\r'? '\n' ;
CLOSURE_FLAG : {guard}? {LBindex =InputStream.Index; }
'{' INTEGER (',' INTEGER?)? '}'
{ closure_lexer.guard = false;
// Go back to the opening brace
InputStream.Seek(LBindex);
Console.WriteLine("Enter Closure Mode");
Mode(CLOSURE);
} -> skip
;
mode CLOSURE;
LB : '{';
RB : '}' { closure_lexer.guard = true;
Mode(0); Console.WriteLine("Enter Default Mode"); };
COMMA : ',' ;
NUMBER : INTEGER ;
fragment INTEGER : [1-9][0-9]*;
和解析器語法
parser grammar closure_parser;
@header { using System;
using System.IO; }
options { tokenVocab = closure_lexer; }
compileUnit
: (other {Console.WriteLine("OTHER: {0}",$other.text);} |
closure {Console.WriteLine("CLOSURE: {0}",$closure.text);})+
;
other : (OTHER | NL)+;
closure : LB NUMBER (COMMA NUMBER?)? RB;
有沒有更好的方式來處理這種情況呢? 在此先感謝