How doI slice the string after the first word

@Topi @ppr

I need to split/slice the below string to capture the text after "School: "

“School: Hempstead” To “Hempstead”
“School: Queens 26” To “Queens 26”
“School: Herricks” To “Herricks”

What would be the syntax. Thank you for your help. Much appreciate.d

@richygeorge
lets assume the grabbed string is: “School: Hempstead” and value of variable strVal1

explore the split function and play with strVal1.Split(":“c) returning a string Array
and play with strVal1.Split(”:"c)(1).trim returning Hempstead

Such play can perfectly we done within a seperate xaml, some predefined variables. setting breakpoint, debug and playing within the watchbox