Find/Create function for sepatating text string to tokens(words).
Function must get text string and return list of string tokens. Function also should not return tokens
containing digits and punctuation (you can do this with regular expressions).
Function must have optional parameters:
- to_lower - (shows that all tokens in returnable list must be in lower case)
- min_token_size - (shows min length of returnable tokens)