strcodeΒΆ

strcode returns the code values (numbers) of the given string.

rvCode = strcode(ssString)

Return Value

rvCode is a vector with code values (numbers).

Parameters

ssString

ssString is a scalar string.

Example

strcode("Hello")
   72.0000    97.0000   108.0000   108.0000   111.0000

History

Version

Description

5.0.0

The function can be used for Unicode strings.

4.2.0

The function can be used for 8-bit clean strings (may contain 0-characters).

id-851535