I have a string \"-123445\". Is it possible to remove the \'-\' character from the string?
I have tried the following but to no avail:
$mylabel.text(
If you want to remove all - you can use:
-
.replace(new RegExp('-', 'g'),"")