Splunk Query to extract all the contents/values/characters from the matching String
.* can be used in rex to extract all the contents/values/characters from the matching String. Syntax: Your__Base_Splunk_Query | rex field=field_name "Matching_String: (?<Custom_Field_Name>.*)" Example: Your__Base_Splunk_Query | rex field=info "ExtendedMessage: (?<ExceptionMessage>.*)" As per ....