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!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...