I am trying to extract the last value from the string in Jmeter Regular Expression extractor.
My string
Server.init("asdfasd4ffffasdf", "http://x.x.x.x:8888/", "asdf-U-Yasdf77asdf99");
I want to get only asdf-U-Yasdf77asdf99
.
I tried something like the below, but not correct:
Server.init\(".+", ".+", "([A-Za-z0-9\-]+)"\);