How can I remove "/" from the end of my data. Let's assume this is my data
#input
ID page
1 www.example.com/, ww.example.com/flight, www.example.com/flight/
2 www.example.com/, ww.example.com/flight
I wish to remove "/" from those who had as their last character and my output will be like that
#output
ID page
1 www.example.com, ww.example.com/flight, www.example.com/flight
2 www.example.com, ww.example.com/flight