Split String help

If I understand you, no. The repetition only applies to the token or group that directly precedes it. That pattern would match “thisssss” but not “thisthis”. If you mean the latter, the pattern is

“(this){2,}”

The parenthesis form a subgroup of tokens, and the repetition applies to that subgroup.

[quote=93231:@Kem Tekinay]If I understand you, no. The repetition only applies to the token or group that directly precedes it. That pattern would match “thisssss” but not “thisthis”. If you mean the latter, the pattern is

“(this){2,}”

The parenthesis form a subgroup of tokens, and the repetition applies to that subgroup.[/quote]

I understand. Thank you :slight_smile: