I have problem with saving regex for extracting class name
Here is my regex
(?i)\[([0-9a-zA-Z\.\s\-]*(\[[0-9]*\])?[0-9a-zA-Z\.\s\-\/]*)\]\s(?P<FIELDNAME>[^ ]+)
And here is log sample
12.02.2015 12:14:16.946 INFO [10.36.27.187 [1423743256597] GET /content/company/global/en/company/notices/polish.html HTTP/1.1] com.company.web.core.cdn.CDNTransformer CDN: http://static-dc.company.net
12.02.2015 14:17:03.340 INFO [pool-5-thread-3] org.apache.jackrabbit.core.state.SharedItemStateManager Validating change-set hierarchy
And here is splunk error
"Invalid regex: no named extraction at position 5 (i.e., "[([0-9a-zA..."). Expected "(?P<variable>pattern)""
... View more