I've an URL like
https://officedomain.com/CDs/ProductMarketingName/Product/Version/MartkingName_Product_Version.exe
and wrote the following query in Splunk search
index=<Server> sourcetype=<type>
| rex field=URL_Field "http(s)?://[^/]+/(?<EXE_NAME>[^/]+)
But it returns me "CDs" instead of "MartkingName_Product_Version.exe"
What am I doing wrong?