Thanks to visit codestin.com
Credit goes to py.rayforcedb.com

Skip to content

String

The String type represents a Vector of Char.

Usage

>>> from rayforce import String

>>> name = String("Hello, World!")
>>> name
String(Hello, World!)  # type: rayforce.String

>>> name.value
'Hello, World!'  # type: str