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.
To extract that substring from the given string, you could use the following to match instead of split.
Working Demo