Hi,
you also can use a regular expression to find and replace similar strings.
this.rawValue = this.rawValue.replace(/\[\/?V\d\]/g, "");
There are a few great ressources for creating regular expressions.
Hi,
you also can use a regular expression to find and replace similar strings.
this.rawValue = this.rawValue.replace(/\[\/?V\d\]/g, "");
There are a few great ressources for creating regular expressions.