Question
I have a large table on a Wiki page which contains all of the equipment in my lab. I want to pull out all of the rows in the table with the string "UP" in them and put them in another table on the same page. I can do this, but the problem is I get the string "SEARCH{...}" appearing just before the results, which I don't want. How can I make this disappear; the search string I am using is:
%SEARCH{ "UP" topic="LabEquipmentTracking" scope="text" nototal="on" noempty="on" casesensitive="on" header="|*Type*|*Label ID*|*IP Address
(192.168.xx.xxx)*|*MAC Address*|*Issue*|*SW Serial Number*|*Notes*|*Status*|*Serial No*|" format="$text" nosearch="on" multiple="on" nonoise="on"}%
Thanks,
Scott
Environment
--
ScottGArmstrong - 05 Oct 2006
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
Make sure to exclude the esarch string itself. One way is to do a
RegularExpression search for table rows that contain "UP" in it, such as:
%SEARCH{ "^\|.*UP" regex="on" topic="LabEquipmentTracking" ...
--
PeterThoeny - 05 Oct 2006