Hello, I need a help for a regular expression that satisfies some occurrences of a text file.
In this case, I need a regular expression that finds occurrences where there are a minimum number of characters in a pattern. For example:
I have the following string:
"'C'; 'AEBDCEAB'; 'A'; 'B'"
...
In this case, I want to get only the characters of "AEBDEAB"
, so that I can use each (in this case, the grouping is for each character, not the whole group, as in a /[A-E]/
) .