Splunk Search

How to Remove brackets and its content?

cedmarjls32
New Member

Hi all,
I have a field named count2 with the following values :
count2
12
32(30)
14
76(23)
3

As mentioned in the title, I'd like to remove the brackets as well as their contents so it would look like this:

count2
12
32
14
76
3

Thanks

Tags (1)
0 Karma
1 Solution

stephanefotso
Motivator

Try regular expression or substr command

  .............  |rex field=count2 "(?<count>[^(])"|table count
SGF

View solution in original post

0 Karma

cedmarjls32
New Member

Thanks for your feedback but it looks like the rex command only returns the first digit of all values

count
1 instead of 12
3 instead of 32
1 instead of 14
7 instead of 76
etc..

0 Karma

cedmarjls32
New Member

Thanks a lot! It's working great!

0 Karma

stephanefotso
Motivator

Ok try this:

   .............  |rex field=count2 "(?<count>\d+)"|table count

or this

 .............  |rex field=count2 "(?<count>\d+)\("|table count
SGF
0 Karma

stephanefotso
Motivator

Try regular expression or substr command

  .............  |rex field=count2 "(?<count>[^(])"|table count
SGF
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...