how to get only part of an object name

 

Hi,

if an object on the graph has name= ABC_DEF_EHIJKL_MNOP_QRST

How can I get only the part "MNOP" and save to a string

With many thanks in advance :)

 
Do your part check your list of string commands and read the descriptions.
 
ubzen:
Do your part check your list of string commands and read the descriptions.

maybe you mean this one? I will try it, thanks.

StringSubstr

 
Yes, StringSubstr("ABC_DEF_EHIJKL_MNOP_QRST",15,4) Should do it. You're welcome.