1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import os
- import re
- import logging
- user_said = "s'il te plait regle le reveil pour sept heures et dix minutes"
- order = "regle le reveil pour {{ hour }} heures et {{ minute }} minutes"
- def _is_containing_bracket(sentence):
-
- pattern = r"{{|}}"
-
- bool = re.search(pattern, sentence)
- if bool is not None:
- return True
- return False
- if _is_containing_bracket(order):
-
-
- list_word_in_order = order.replace("{{ ","{{").replace(" }}", "}}").split()
- print "order matched: %s" % list_word_in_order
-
- the_order = order[:order.find('{{')]
- print "the order catched %s" % the_order
-
- nb = user_said[user_said.find(the_order):]
- truncate_list_word_said = nb.split()
- print "truncate_list_word_said : %s" % truncate_list_word_said
-
- dictVar = {}
- for idx, ow in enumerate(list_word_in_order):
- if _is_containing_bracket(ow):
-
- oo = ow.replace("{{","").replace("}}", "")
- dictVar[oo] = truncate_list_word_said[idx]
- print "The dict Var : %s" % dictVar
|