Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function QuotedStr(const S: string): string;
Returns the quoted version of a string.
A single quote character (') is inserted at the beginning and end of string S, and each single quote character in the string is repeated.
var s : string;
s:='Delphi''s Pascal';
//ShowMessage returns Delphi's Pascal
s := QuotedStr(s);
//ShowMessage returns 'Delphi''s Pascal'
|
String Types in Delphi
Understanding and managing string data types in Delphi's Object Pascal. Learn about differences between Short, Long, Wide and null-terminated strings.
Data filtering - DB/8
Chapter eight of the free Delphi Database Course for beginners. Using Filters to narrow the scope of data that is presented to the user.
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|