I can't find a function that will replace one substring with another.
For example, I have a component LabeledEdit
and I want to write some text in it. After that, I want to check if there are some spaces in the text and replace them with %
.
String text;
text = LabeledEdit1->Text.Trim();
text = text. <- some replace function to replace " " to "%"