Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added description of Macro function number(string)

...

word = "hello"
print (word " is ", length(word), "characters long")


string lowercase( string )

Returns a lowercase copy of the input string.

 

number number( string )

Converts a string into a number; if a string cannot be converted into a number, then  zero is returned. Example: a = number('123.4')


list
parse( string )
list parse( string,string )
list parse( string,string,string )

...