[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Returns all characters in a string till a given character (not included).
Source position: strutils.pp line 167
function Copy2Symb( |
const S: string; |
Symb: Char |
):string; |
S |
|
String to 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 occurrence of the given character.
Copy2Symb 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. The string S is left untouched. If Symb does not appear in S, then the whole of S is returned.
None.
|
Returns all characters in a string till the first space character (not included). |
|
|
Deletes and returns all characters in a string till a given character (not included). |