Splunk Search

How to extract this string?

chanhee1
Loves-to-Learn Lots

There are two types of raw data. What is the regular expression to get the value between the /* special symbol and the */ special symbol in the raw data?

I tried this regex but it doesn't work

rex field=query "^[^/\n]*/\*(?P<test>[^\*]+)"

 

DATA1

SELECT /*4/18 test */ DRTA_SEQ\r\n FROM DATA_REQ_LIST\r\n WHERE DATE < TO_DATE('2023-04-18 06:00:00', 'YYYY-MM-DD HH24:MI:SS')\r\n

 

DATA2

with my_index as (\n select index_name from ALL_indexes where table_owner = :1 \n /* test select index_name from CHAN_indexes where table_owner = :schema_name and table_name in ( :[*object_names] )\n *//* test select * from Chanlist */

 

I want this string to be extracted

DATA1

4/18 test

DATA2

test select index_name from CHAN_indexes where table_owner = :schema_name and table_name in ( :[*object_names] )\n

test select * from Chanlist

 

 

Labels (2)
0 Karma

yuanliu
SplunkTrust
SplunkTrust

Assume that your data field is named data,

| rex field=data "^[^/]*(?<data_a>.+/)[^/]*$"
| eval data_a = split(data_a, " */")
| eval data_a = mvmap(data_a, replace(data_a, "/\* *", ""))
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| rex max_match=0 "\/\*(?<value>.+?)(?>\*\/)"

manjunathmeti
Champion

hi @chanhee1 ,

Try this:
Updating the answer with @ITWhisperer regex.

 

 

| makeresults 
| eval query="SELECT /*4/18 test */ DRTA_SEQ\r\n FROM DATA_REQ_LIST\r\n WHERE DATE < TO_DATE('2023-04-18 06:00:00', 'YYYY-MM-DD HH24:MI:SS')\r\n" 
| append 
    [| makeresults 
    | eval query="
with my_index as (\n select index_name from ALL_indexes where table_owner = :1 \n /* test select index_name from CHAN_indexes where table_owner = :schema_name and table_name in ( :[*object_names] )\n *//* test select * from Chanlist */"] 
| rex max_match=0 field=query "\/\*\s?(?<test>.+)(?>\*\/)"
| mvexpand test

 

 

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...

Global Splunk User Group Events: May + June 2026

Your Splunk Community Awaits: Discover Upcoming User Group Events Worldwide    Staying ahead in the fast-paced ...

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...