[Overview][Constants][Types][Procedures and functions] | Reference for unit 'strutils' (#rtl) |
Deletes and returns all characters in a string till a given character (not included).
Source position: strutils.pp line 146
function Copy2SymbDel( |
var S: String; |
Symb: Char |
):String; |
S |
|
String to delete and return first characters from. |
Symb |
|
Symbol till which characters will be copied. Will not be included in the result. |
Characters from the string till the first occurence of the given character.
Copy2SymbDel determines the position of the first occurrence of Symb in the string S and returns all characters up to this position. The Symb character itself is not included in the result string. All returned characters, not including the Symb character, are deleted from the string S, after which it is right-trimmed. If Symb does not appear in S, then the whole of S is returned, and S itself is emptied.
None.
|
Deletes and returns all characters in a string till the first space character (not included). |
|
|
Returns all characters in a string till a given character (not included). |
No notes exist for this page yet.