Delphi - Remove Extra Quotes From Fields
Join the DZone community and get the full member experience.
Join For FreeRemove extra quotes (') from entered fields
function FixQuote(FixString : string) : string;
begin
Result := AnsiReplaceStr(FixString, '''' , '''''' );
end;
Delphi (programming language)
Opinions expressed by DZone contributors are their own.
Comments