#KODIPROP:inputstreamthe literal text #KODIPROP:inputstream (case sensitive) \.the literal . (4610 / 568 / 2E16)
adaptivethe literal text adaptive (case sensitive) \.the literal . (4610 / 568 / 2E16)
license_key=the literal text license_key= (case sensitive) .*any character (except for line terminators), repeated any number of times
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
.+any character (except for line terminators), repeated at least once
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string