我的任务是一个扫描仪程序。我的字母如下:
all english letters (upper and lower), digits,
plus the extra character _ (underscore) & ws. Identifier begins with a letter and can
continue with any number of letters, digits or _ up to 10 significant characters.
我想确保我的表是正确的。出于某种原因,我的扫描仪无法使用下划线。我可以让它适用于字母和数字。我正在尝试缩小我的问题范围,并希望确保它不是表格。
这是我的表格,只是其中的一部分:
// state token ws L D _
{ 0, 0, 0, 1, 11, 21,
{ 1, id_tk, -1, 2, 2, 2,
{ 2, id_tk, -1, 3, 3, 3,
{ 3, id_tk, -1, 4, 4, 4,
{ 4, id_tk, -1, 5, 5, 5,
{ 5, id_tk, -1, 6, 6, 6,
{ 6, id_tk, -1, 7, 7, 7,
{ 7, id_tk, -1, 8, 8, 8,
{ 8, id_tk, -1, 9, 9, 9,
{ 9, id_tk, -1, 10, 10, 10,
{ 10, id_tk, -1, -2, -2, -2,
{ 11, num_tk, -1, -1, 12, -2,
{ 12, num_tk, -1, -1, 13, -2,
{ 13, num_tk, -1, -1, 14, -2,
{ 14, num_tk, -1, -1, 14, -2,
{ 15, num_tk, -1, -1, 15, -2,
{ 16, num_tk, -1, -1, 16, -2,
{ 17, num_tk, -1, -1, 17, -2,
{ 18, num_tk, -1, -1, 18, -2,
{ 19, num_tk, -1, -1, 19, -2,
{ 20, num_tk, -1, -1, 20, -2,
{ 21, undrs_tk, -1, -2, -2, -2,
传说如下:
WS = whitespace
L = letter
D = digit
_ = underscore
-1 = final state
-2 = error state
此表与上述字母表是否正确?我真的很感激帮助。谢谢