انتقل إلى المحتوى الرئيسي

strmid

warning

This function starts with a lowercase letter.

Description

Extract a range of characters from a string.

NameDescription
dest[]The string to store the extracted characters in.
const source[]The string from which to extract characters.
startThe position of the first character.
endThe position of the last character.
maxlength = sizeof (dest)The length of the destination. (Will be the size of dest by default)

Returns

The number of characters stored in dest[]

Examples

new string[6];
strmid(string, "Extract 'HELLO' without the !!!!: HELLO!!!!", 34, 39); // string contains "HELLO"
  • strcmp: Compare two strings to check if they are the same.
  • strfind: Search for a string in another string.
  • strins: Insert text into a string.
  • strlen: Get the length of a string.
  • strpack: Pack a string into a destination string.
  • strval: Convert a string into an integer.
  • strcat: Concatenate two strings into a destination reference.
  • strdel: Delete part of a string.