Search Results

3
votes

What is the fastest way of stripping non alphanumeric characters from a string in Delphi7?

uses JclStrings; S := StrKeepChars('mystring', ['A'..'Z', 'a'..'z', '0'..'9']); …