When listing services or open ports the
string
returned is normally delimited by a comma.
The
string returned is made up of “Name/Port
number +
“open/close” + delimiter. The delimiter
can be any
string and is set using the delimiter property.
However if over formatting is required i.e
for
returning HTML the string can be broken
down into
three areas.
appendstart + “Name/Port number + appendmid
+
“open/close” + appendend
By setting the different properties different
formats can be returned. The delimiter property
is
ignored when appendstart and appendend is
used.
For Example a Results HTML table
object.appendstart = “<tr><td>”
object.appendmid = “</td><td>”
object.appendend = “</td></tr>”
If appendstart and appendend is blank
and
appendmid contains a string the delimiter
is also
included.
“Name/Port number + appendmid + “open/close”
+
delimiter