Hi, I have these strings:
/banking/bonifici/italia
/banking/bonifici/italia/
and I would like to remove - with javascript - first slash and last slash if it's exists.
I tried ^\/(.+)\/?$
but it doesn't work.
Reading some post in stackoverflow I found that php has trim function and I could use his javascript translation (http://phpjs.org/functions/trim:566) but I would prefer a "simple" regexp.
Many thanks.