This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$pattern = "/{{Taxobox[^}]*}}(.*?)==/"; | |
if (preg_match($pattern, $pagecontent, $matches)) { | |
var_dump($matches); | |
} | |
Amancio Ortega | |
/{{Taxobox.*?}}(.*?)==/s | |
Inditex PSOE BBVA | |
$pattern = "/(?<=}})(.+)(?===))/ms"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p:tabView> | |
<p:ajax event="tabChange" listener="#{bean.onTabChange}" /> | |
<p:tab title="Tab 1" id="tab1"> | |
//chart1 | |
</p:tab> | |
<p:tab title="Tab 2" id="tab2"> | |
//chart2 | |
</p:tab> |