The Value within Quotes get repeated twice. Any idea?
if(this.rawvalue != null){
this.rawValue = "/ " + this.rawValue;
}
Desired Result = / SampleData.
Obtained Result = / / Sample Data. The "/ " gets repeated twice.
The Value within Quotes get repeated twice. Any idea?
if(this.rawvalue != null){
this.rawValue = "/ " + this.rawValue;
}
Desired Result = / SampleData.
Obtained Result = / / Sample Data. The "/ " gets repeated twice.