Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function IsDelimiter(const Delimiters, S: string; Index: Integer): boolean;
Returns True if a specified character in a string matches one of a set of delimiters starting from byte position Index.
Delimiters cannot be a multibyte string, and we cannot use #0 as one of the delimiters.
var s : string;
b : boolean;
s:='http://delphi.about.com';
b:= IsDelimiter(':', s, 5);
//b=True;
|
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.
LastDelimiter,
IsPathDelimiter
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|