Hi All, I have a raw message which contains Action name like below : CommBank.Api.PricingExtractor.Controllers.EventPublishController.PublishEventsToKafkaTopics (CommBank.Api.PricingExtractor) which I have extracted using below regular expression
rex field=message "ActionName\\\":\\\"(?<ActionName>[^\\\"]+)"
Is there a way to extract only last part after "." and before "(" i.e "PublishEventsToKafkaTopics" just this I tried few ways but was getting error. Any help will be appreciated Thanks in advance
... View more