Nope. It's just one of those things.
You could always:
replace/all string "> <" "><"
if you knew that was safe to do on the original string so that the
load/markup wouldn't make the whitespace values. But that still
doesn't solve the string with more than one space (or tabs). It's
best to iterate the block and remove items that TRIM to EMPTY?:
for x length? blk 1 -1 [if empty? trim blk/:x [remove at blk x]]
If you don't want any strings in the block permanently trimmed then
make it "trim copy blk/:x" instead.
Sterling
> > You can get rid of the whitespace-only strings if you want to that are
> > created due to whitespace between the tags.
>
> OK, is there easy way of how to do it without using iteration? If I will use
> e.g. replace/all blk " " none, it will just replace whitespace with 'none,
> but we want simply to remove the whitespace :-)
>
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.