unreal.RigVMFunction_StringTruncate
¶
- class unreal.RigVMFunction_StringTruncate(name: str = '', count: int = 0, from_end: bool = False, remainder: str = '', chopped: str = '')¶
Bases:
RigVMFunction_StringBase
Returns the left or right most characters from the string chopping the given number of characters from the start or the end
C++ Source:
Plugin: RigVM
Module: RigVM
File: RigVMFunction_String.h
Editor Properties: (see get_editor_property/set_editor_property)
chopped
(str): [Read-Write] the part of the name that has been chopped offcount
(int32): [Read-Write] Number of characters to remove from left or rightfrom_end
(bool): [Read-Write] if set to true the characters will be removed from the endname
(str): [Read-Write]remainder
(str): [Read-Write] the part of the string without the chopped characters