Skip to main content

module

string

Implements basic object methods for working with strings.

These are Mojo built-ins, so you don't need to import them.

Structs

Functions

  • ord: Returns an integer that represents the given one-character string.
  • chr: Returns a string based on the given Unicode code point.
  • ascii: Get the ASCII representation of the object.
  • atol: Parses and returns the given string as an integer in the given base.
  • atof: Parses the given string as a floating point and returns that value.
  • isdigit: Determines whether the given character is a digit [0-9].
  • isupper: Determines whether the given character is an uppercase character.
  • islower: Determines whether the given character is an lowercase character.
  • isprintable: Determines whether the given character is a printable character.