Reporting

cdr analysis area code

HansK
Path Finder

Hi,

I have field which contains telephonenumbers and would like to create a report on area codes, so I need to only use the first 3 digits of the field.

How is this done?

Tags (2)
0 Karma
1 Solution

Ayn
Legend

Grab the first 3 digits - there are multiple ways to do this. Either you use eval and substr:

... | eval areacode=substr(yourphonefield,1,3)

Or you could use rex:

... | rex field=yourphonefield "^(?<areacode>\d{3})"

View solution in original post

Ayn
Legend

Grab the first 3 digits - there are multiple ways to do this. Either you use eval and substr:

... | eval areacode=substr(yourphonefield,1,3)

Or you could use rex:

... | rex field=yourphonefield "^(?<areacode>\d{3})"
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...