unreal.RigVMFunction_StringStartsWith

class unreal.RigVMFunction_StringStartsWith(name: str = '', start: str = '', result: bool = False)

Bases: RigVMFunction_StringBase

Tests whether this string starts with given string

C++ Source:

  • Plugin: RigVM

  • Module: RigVM

  • File: RigVMFunction_String.h

Editor Properties: (see get_editor_property/set_editor_property)

  • name (str): [Read-Write] The input string to search within

  • result (bool): [Read-Write] True if the given input string starts with the given start string

  • start (str): [Read-Write] The start string to look for

property name: str

[Read-Write] The input string to search within

Type:

(str)

property result: bool

[Read-Only] True if the given input string starts with the given start string

Type:

(bool)

property start: str

[Read-Write] The start string to look for

Type:

(str)