'How do I only copy a certain part using grep command [duplicate]

I am trying to run this command

svn info svn://xyz-repo/svn/xyzclientjs/branches/features/CRE-406 | grep 'Relative URL'

which gives me this

Relative URL: ^/branches/features/CRE-406

I want to copy everything after the "^/"

so I only get this as output

branches/features/CRE-406

I tried using grep -v "^/" 'Relative URL' but it didnt worked. Please any suggestions are highly appreciated



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source