given this part of a LogString:
... HTTP/1.1" 206 391402 "-" "AppleCoreMedia/1.0.0.8B117 (iPod; U; CPU OS 4_1 like Mac OS X; de_de)"
I need to match the last substring that is inside the brackets to get the Remote System Info from the string.
I'm not really into regular expressions but from my understanding I have to escape the brackets like "\(" and "\)".
Now to match the whole string I thought I'd have to do it like:
\(\.*\) with the dot matching anything and "*" for specifying a random amount of dots.
But it does't work. Neither does (\.*) or (.*) as you would expect.
There must be a problem with opening and closing the brackets because I get a Seg Fault when trying to match the string this way.
Can anyone help me please?