Splunk Search

How do you make a regular expression to extract the first 4 words in a sentence?

dojiepreji
Path Finder

I need to extract the first 4 words in a field with sample data like this,

"The team performs checks for the following dashboards".

What I want is to extract the first 4 words, like so,

"The team performs checks".

rex field=long_description ^(?<field1>\w+\s\d+)

I've made a rex command that will extract the first word. However, I'm having difficulty figuring out how to extract the first 4 words.

Can anybody please help me out?

0 Karma
1 Solution

vnravikumar
Champion

Hi @dojiepreji

Please try

| makeresults 
| eval sample="The team performs checks for the following dashboards" 
| rex field=sample "(?P<output>(?:\S+\s){3}\S*).*"

View solution in original post

0 Karma

vnravikumar
Champion

Hi @dojiepreji

Please try

| makeresults 
| eval sample="The team performs checks for the following dashboards" 
| rex field=sample "(?P<output>(?:\S+\s){3}\S*).*"
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Do you want the first 4 words in a single field or multiple fields. @saurabhkharkar's answer will put them into a single field. To get them in multiple fields, try this.

| rex field=long_description "(?<word1>\w+)\W+(?<word2>\w+)\W+(?<word3>\w+)\W+(?<word4>\w+)"
---
If this reply helps you, Karma would be appreciated.
0 Karma

saurabhkharkar
Path Finder
|makeresults
|eval string="The team performs checks for the following dashboards"
| rex field=string "(?<output>\w+\s+\w+\s+\w+\s+\w+).+"
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 ...