-
Notifications
You must be signed in to change notification settings - Fork 50
Manual:DIL Manual mid()
iamnove edited this page Jan 18, 2023
·
51 revisions
Function: string mid ( o : string, s : integer, e : integer );
o the original string to be parsed s The starting point of the string to be parsed out e the ending point of the string to be parsed out return the portion of the string defined by the 's' and 'e' values
This function parses the string passed to it and returns the portion of the string defined by the start value and the end value that is also passed to the function. Example: "rock" := mid ("sprocket",3,6);
---~---~---~---~---~---~---~---~---