I am using the trim
function to a string but as I see it is not working well. I have
text, text_trim: string
and I do :
text := memo1.text;
text_trim := text.Trim;
But it is not working. It just copies the string.
If I write for example in the memo: "Hello how are you?" text content is this(Hello how are you?) and text_trim has also the same content. I want to trim white spaces in a text.