This question about Topic Markup Language and applications: Answered
%SEARCH{ "^\|\s*.+?\|" topic="%TOPIC%" type="regex" multiple="on" nonoise="on" format="$pattern(^\| *(.*?) *\|.*)" separator=", " }%
generates
Category, ChoiceA, ChoiceB, ChoiceC, ChoiceD, ChoiceE
given
Category |
Description |
ChoiceA |
a |
ChoiceB |
b |
ChoiceC |
c |
ChoiceD |
d |
ChoiceE |
e |
how can i exclude the
*Header*
entry?
--
WillNorris - 04 Mar 2010
I would probably be looking at
FilterPlugin for this, as it has a
skip
parameter.
Also try:
%SEARCH{ "^\|\s*[^*]+?\|" topic="%TOPIC%" type="regex" multiple="on" nonoise="on" format="$pattern(^\| *(.*?) *\|.*)" separator=", " }%
ChoiceA, ChoiceB, ChoiceC, ChoiceD, ChoiceE
--
PaulHarvey - 04 Mar 2010
Another choice would be
RenderTableDataPlugin.
--
ArthurClemens - 04 Mar 2010