[top][index]
search for:

ascii String -- ASCII character conversion

Synopsis:

  • Usage: v = ascii s
  • Function: ascii -- ASCII character conversion
  • Input:
  • s, an instance of class String: a string
  • Output:
  • v, an instance of class List: the list of (small integer) ASCII codes of the characters of s
  • i1 : ascii "abcdef"

    o1 = {97, 98, 99, 100, 101, 102}

    o1 : List
    i2 : ascii oo

    o2 = abcdef
    i3 : first ascii "A"

    o3 = 65

    See also:

  • ascii {...} -- ASCII character conversion

  • [top][index]
    search for: