Hi, Looking for integer and decimal non terminal ( token ) definition on following n3 grammar specification: http://www.w3.org/2000/10/swap/grammar/n3-report.html and http://www.w3.org/2000/10/swap/grammar/n3.n3 The ebnf definition for integer and decimal are: integer : [-+]?[0-9]+ decimal : [-+]?[0-9]+(\.[0-9])? There is an ambiguity since "123" ( for example ) match integer and decimal I propose decimal : [-+]?[0-9]+\.[0-9]* Width the above definition "123" match only integer, "123." match decimal. This look like C and Java standard for numéric constants Best regards Luc PeuvrierReceived on Friday, 13 February 2009 02:46:51 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Friday, 13 February 2009 02:46:57 GMT