Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 from __future__ import absolute_import, print_function
00027
00028 import rocon_ebnf.rule_parser as rule_parser
00029
00030
00031
00032
00033
00034 if __name__ == '__main__':
00035 print("==================================================")
00036 foo_rules = [
00037 'option verbose',
00038 'pattern ::= "foo" | "foo2"',
00039 ]
00040 input_string = "foo2"
00041 result = rule_parser.match(foo_rules, input_string)
00042 print("Result %s" % result)
00043 print("==================================================")
00044 foo_rules = [
00045 'option verbose',
00046 'pattern ::= r"foo" | r"foo2"',
00047 ]
00048 input_string = "foo2"
00049 result = rule_parser.match(foo_rules, input_string)
00050 print("Result %s" % result)
00051 print("==================================================")