Concept Flow - TRIM, LTRIM, RTRIM
Start with string
Apply LTRIM?
Yes→Remove leading spaces
Apply RTRIM?
Yes→Remove trailing spaces
Apply TRIM?
Yes→Remove both sides spaces
Return original string
Output trimmed string
The flow shows starting with a string, then optionally removing spaces from the left (LTRIM), right (RTRIM), or both sides (TRIM), returning the cleaned string.