unreal.RigVMFunction_StringRight

class unreal.RigVMFunction_StringRight(value: str = '', count: int = 0, result: str = '')

Bases: RigVMFunction_StringBase

Returns the right most characters of a string

C++ Source:

  • Plugin: RigVM

  • Module: RigVM

  • File: RigVMFunction_String.h

Editor Properties: (see get_editor_property/set_editor_property)

  • count (int32): [Read-Write] The number of characters to retrieve

  • result (str): [Read-Write] The resulting right most characters of the input string

  • value (str): [Read-Write] The input string to retrieve the right most characters of

property count: int

[Read-Write] The number of characters to retrieve

Type:

(int32)

property result: str

[Read-Only] The resulting right most characters of the input string

Type:

(str)

property value: str

[Read-Write] The input string to retrieve the right most characters of

Type:

(str)