Hi guys, I have a simple regexp question. I have the following multiline string:
description: line1\r\nline2\r\n...
And I am trying to find all the lines that come after the description:
. I used the following regexp (and few more):
description: ((.*\r\n){1,})
...without any success. Then I found that there is a 'Regexp StackOverflow' bug (stated as won't fix) in Sun, see Bug #5050507. Can anyone please provide me with the magic formula to overcome this annoying bug? Please note that the total length of the lines must exceed 818 bytes!!