After spending over 2.5 hrs, can someone help with below?
I have html file in format like:
Example 1
[[section_abc]]
<div>
several lines of html ...
</div>
[[/section_abc]]
Example 1
[[section_opq]]
<div>
several lines of html ...
</div>
[[/section_opq]]
Below is desired output:
Example 1:
group1: section_abc
group2: content between [[section_abc]]
and [[/section_abc]]
Example 2:
group1: section_opq
group2: content between [[section_opq]]
and [[/section_opq]]
Here is my current test line:
preg_match_all("/(\[\[)([^}]+)(\]\])/", $input_lines, $output_array);
If there is no section nesting, have a try with
\[\[(\w+)]]
captures one or more word characters[[
inside]]
In between section-tags used
(?>[^[]+|\[[^[])*
rather than.*?
for better performance but still allowinga[b]c
. If you got nested stuff you can easily make this pattern recursive.\[\[/\1]]
ends the section with what was captured in first capturing group.See php demo at eval.in or regex demo at regex101