Create a file string_tokenizer_count.py that contains a function tokenizer_counter which takes in a string as a parameter and returns a dictionary of words and their count in the string.
- The function should remove any punctuation from the string and convert it to lowercase before counting the words.
- The function should return a dictionary of words and their count, sorted alphabetically by word.