This lesson shows how to use three common string methods in PowerShell: Trim, Split, and Replace. We start with a string that has extra spaces and commas separating words. First, we use Trim() to remove spaces at the start and end of the string. Then, we split the string into parts using Split(","), which cuts the string at commas but keeps spaces around each part. Finally, we replace the word 'banana' with 'orange' in the second part using Replace(). The output shows the replaced word with spaces preserved. This step-by-step trace helps understand how each method changes the string and why order matters.