RegEx with variable data in it - ply.lex
im using the python module ply.lex to write a lexer. I got some of my tokens specified with regular expression but now im stuck. I've a list of Keywords who should be a token . data is a list with about 1000 Keywords which should be all recognised as one sort of Keyword. This can be for example: _Function1 _UDFType2 and so on. All words in the list are separated by whitespaces thats it. I just want that lexer to recognise the words in this list, so that it would return a token of type `KEYWORD. data = 'Keyword1 Keyword2 Keyword3 Keyword4' def t_KEYWORD(t): # ... r'\$' + data ?? return t text =