unreal.RigVMFunction_StringConcat

class unreal.RigVMFunction_StringConcat(a: str = '', b: str = '', result: str = '')

Bases: RigVMFunction_StringBase

Concatenates two strings together to make a new string

C++ Source:

  • Plugin: RigVM

  • Module: RigVM

  • File: RigVMFunction_String.h

Editor Properties: (see get_editor_property/set_editor_property)

  • a (str): [Read-Write] The first / left string to concatenate

  • b (str): [Read-Write] The second / right string to concatenate

  • result (str): [Read-Write] The resulting concatenated string

property a: str

[Read-Write] The first / left string to concatenate

Type:

(str)

property b: str

[Read-Write] The second / right string to concatenate

Type:

(str)

property result: str

[Read-Only] The resulting concatenated string

Type:

(str)