I need to use regular expressions to draw all the individual letters from the entire sentence, and the result must be in only one group, it can not be a separate group. E.g:
This is an example sentence in which I have two letters:
a and b
Score:
Match: ab
Below is my regex, and one most important thing, befor i can't use regex with: "(?<!"
\b[A-Za-z]\b
So far I have:
Match1: a
Match2: b