Hi
There's nothing special about this. So provided you have a string variable value, and you want to get a part of it in another variable in substring , you would use following in Expression Shape-
substring = value.Substring(startIndex, length);
Refer-
https://msdn.microsoft.com/en-us/library/aka44szs%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
Thanks Arindam