How can I make it that I can reduce the length of a String? Like for example the string.Length() = 300.
My goal is to make it to 120 characters, retaining the left side (e.g. NameOfThePerson to NameofThePers).
string sizeString = 'Imagine this is more than 120 Characters'; if(sizeString.Length() > 120){ //insert logic here to make it 120 characters }