How can I check if a TStringList contains specific symbols?
I want to display a message if any of the following are found in the String List:
\ / : * ? " < > |
Something like:
var
SL: TStringList;
i: Integer;
begin
SL := TStringList.Create;
try
for i := 0 to SL.Count -1 do
begin
if SL.Strings[i] ?? then
begin
MessageDlg('Stringlist contains bad characters', mtError, [mbOK], 0);
end else
begin
// no bad characters
end;
end;
finally
SL.Free;
end;
end;
