Function MidMBS
MidMBS(text as string, position as integer, count as integer) as string
Version: 1.0
Returns a string with the characters from the source string starting with the character at the given position and with the given maximum length.
Example queries:
select LeftMBS("Hello World",5) select MidMBS("Hello World",3,50)
Back to function list.