I have a lot of lines of text in a label that all contain ";.?" whereas the ? is a different value in each line.
I would like to replace the space at the end with ";" to make it look like ";.?;
I have tried
I thought that a wildcard was _ but it obviously isn't.
Any ideas?
I would like to replace the space at the end with ";" to make it look like ";.?;
I have tried
B4X:
label1.text = label1.text.replace(";._", ";._;")
I thought that a wildcard was _ but it obviously isn't.
Any ideas?