Przejdź do głównej zawartości

strdel

warning

This function starts with a lowercase letter.

Description

Delete part of a string.

NameDescription
string[]The string to delete part of.
startThe position of the first character to delete.
endThe position of the last character to delete.

Returns

This function does not return any specific values.

Examples

new string[42] = "We will delete everything apart from this";
strdel(string, 0, 37); // string is now "this"
  • 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.
  • strmid: Extract part of a string into another string.
  • strpack: Pack a string into a destination string.
  • strval: Convert a string into an integer.
  • strcat: Concatenate two strings into a destination reference.