I have some text like this, it's written in a custom markdown style format. For example:
[Lorem ipsum]
Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
[Ut wisi]
[Enim ad minim veniam](a), quis nostrud exerci tation ullamcorper.
suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat.
Vel illum dolore eu feugiat nulla facilisis at vero.
[Ros et accumsan et iusto odio dignissim](b) qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
[[Nam liber]](c)
Tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.
As you can see there are square brackets surounding headings, and there are square brackets followed by parenthesis containing a letter which is what I am trying to match with a regex. The regex I'm trying to use is this:
preg_match_all("#\[(.*?)\]\(([a-z]+)\)#is",$html,$matches)
The problem with this ^ one is it matches from [Lorem ipsum] down to the end of (a).
I could also use the following, however I need to be able to include headings with their square brackets so this doesn't work correctly:
preg_match_all("#\[([^]]+)\]\(([a-z]+)\)#is",$html,$matches)
After some reading up, I suspect what I need is a lookahead, however I've not been able to get my head around them. Any help much appreciated.
Clarification
I'm basically looking to be able to wrap any part of some text with the square brackets/parenthesis combination and then be able to match them with regex without existing square brackets anywhere causing conflicts. Example text:
[[Lorem ipsum]](a)
Dolor sit amet, [consectetuer adipiscing elit](b), sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Desired matches:
[[Lorem ipsum]](a)
[consectetuer adipiscing elit](b)
Or... more complex
[[Lorem ipsum]
Dolor sit amet, sed diam nonummy nibh euismod](a) tincidunt ut laoreet dolore magna aliquam erat volutpat.
Desired match:
[[Lorem ipsum]
Dolor sit amet, sed diam nonummy nibh euismod](a)
Is it possible?
[[here] and [here]](a). – Adam Nov 8 '12 at 23:44