rubyregexrubular

ruby regex: How to extract string from url


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.


Solution

  • 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