Splunk Search

How to fix the mismatched bracket in regex?

dbcase
Motivator

Hi,

I have the below regex and Splunk keeps telling me I have a mismatched "[" and for the life of me I can't figure out where

rex field=properties "\"url\":\"[^"]+\/(?<final_segment>[^"?]*)(\?[^\/"]+)?\""
Tags (2)
0 Karma
1 Solution

niketn
Legend

@dbcase, you would need to escape double quotes in the regular expression for SPL.
Try the following run anywhere search:

| makeresults
| eval properties="\"url\":\"https://www.google.com\""
| rex field=properties "\"url\":\"[^\"]+\/(?<final_segment>[^\"?]*)(\?[^\/\"]+)?\""
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

niketn
Legend

@dbcase, you would need to escape double quotes in the regular expression for SPL.
Try the following run anywhere search:

| makeresults
| eval properties="\"url\":\"https://www.google.com\""
| rex field=properties "\"url\":\"[^\"]+\/(?<final_segment>[^\"?]*)(\?[^\/\"]+)?\""
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

dbcase
Motivator

Thank you niketnilay! (again) . 🙂

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...