pegar todas strings apos determinada carcter delphi code example
Example: delphi copiarcaracter string
string_test := 'HELLO WORLD';
Chave := Copy(string_test, 3, 2);
Chave = 'LL'
string_test := 'HELLO WORLD';
Chave := Copy(string_test, 3, 2);
Chave = 'LL'