I have a URL that is very similar to:
url/Search/SearchResult?SearchText=FirstName%20Lastname
Using JQ, how can I parse Everything after the "SearchText="
, while replacing %20
with a space.
I'm looking to return a string in the following format:
"FirstName LastName"
I figure this can be done easily with RegEx, but I struggle working with it, so examples would be very helpful.
Thanks