Splunk Core Certified Advanced Power User — Question 99
What is the default value of LINE_BREAKER?
Answer options
- A. \r\n
- B. ([\r\n]+)
- C. \r+\n+
- D. (\r\n+)
Correct answer: B
Explanation
The correct answer is B, as the default LINE_BREAKER is designed to match one or more line break characters, which is represented by the regex pattern ([
]+). Options A and D represent specific line endings, and option C incorrectly suggests a different regex format that does not match the default behavior.