I created a page on WordPress:
mydomain.com/urlhere/
And I want to change this specific url of page to
mydomain.com/urlhere
In PHP (which you tagged on this question), you could use the rtrim function:
rtrim
$url = rtrim($url, '/');