maxqiu
7 years agoOccasional Contributor
how to remove the ";" sign within the url
Hi Everyone,
I am trying to send the url parameter from Jenkins to the testcomplete. When I would like to assign the value of url parameter, it always shows a ";" at the end of url. I would like to know what is the way to remove it. I used the "split" to remove the ";", but it is still like that.
Best,
Max
Hi,
Depending on language you are using in your project: https://support.smartbear.com/testcomplete/docs/scripting/working-with/strings/index.html
Best way irrespective of what language you are using in test complete.
if it is always a last character
aqString.SubString(str,0,aqString.GetLength(str) - 1);