ruby regex: How to extract string from url

301 Views Asked by At

not very familiar with rubular, would like to know how to use Ruby regex to extract "postreview-should-be-the-cause" from

"{\"source_url\"=>\"http://testing.com/projects/postreview-should-be-the-cause\"}"

the best I am getting is

check_user = url.split(/\b(\w+)\b/)
=> ["{\"", "source_url", "\"=>\"", "http", "://", "localhost", ":", "3000", "/", "projects", "/", "postreview", "-", "should", "-", "be", "-", "the", "-", "cause", "\"}"]

Still trying various ways. Thanks in advance.

3

There are 3 best solutions below

2
On BEST ANSWER

To extract that substring from the given string, you could use the following to match instead of split.

result = url.match(/\w+(?:-\w+)+/)

Working Demo

2
On

You could use string.scan instead of string.split

> "{\"source_url\"=>\"http://testing.com/projects/postreview-should-be-the-cause\"}".scan(/(?<=\/)[^\/"]*(?=[^\/]*$)/)[0]
=> "postreview-should-be-the-cause"
0
On
\/(?!.*\/)

Split by this.And get the second component.See demo.

https://regex101.com/r/sH8aR8/48