Concept Flow - nchar and substring
Start with a string
Use nchar to get length
Use substring(text, start, end) to extract part
Output substring
End
We start with a string, find its length using nchar, then extract a part using substring by specifying start and end positions.