RE: inserting delimiters

2004-05-06 Thread Robert Taylor
gt; Sent: Wednesday, May 05, 2004 8:48 PM > To: Struts Users Mailing List > Subject: Re: inserting delimiters > > > Thanks again. Where is the spec? > I tried what you gave me, slightly edited, as follows: > > > > > / > > > > > I get t

Re: inserting delimiters

2004-05-05 Thread Dean A. Hoover
ED] Subject: Re: inserting delimiters Thanks Robert. It looks like I need to learn JSTL. Any suggestions? Also, the original problem I posted has changed a little. I am now stuffing a Vector of Vectors of SeriesCategory (my object). SeriesCategory has a getSafeTitle() method that gets an XML safe c

Re: inserting delimiters

2004-05-05 Thread James Watkin
[mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 8:02 AM To: [EMAIL PROTECTED] Subject: inserting delimiters I have a Collection of Strings that I want to render with delimiters. Suppose The Strings are "AAA", "BBB", and "CCC". For example, I want to delimit the s

RE: inserting delimiters

2004-05-05 Thread Robert Taylor
AAA/BBB/CCCDDD/EEE/FFF etc... BTW, this code is untested, but it should work. robert > -Original Message- > From: Dean A. Hoover [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 05, 2004 8:01 PM > To: [EMAIL PROTECTED] > Subject: Re: inserting delimiters > > > T

Re: inserting delimiters

2004-05-05 Thread Dean A. Hoover
PROTECTED] Sent: Wednesday, May 05, 2004 8:02 AM To: [EMAIL PROTECTED] Subject: inserting delimiters I have a Collection of Strings that I want to render with delimiters. Suppose The Strings are "AAA", "BBB", and "CCC". For example, I want to delimit the strings with

RE: inserting delimiters

2004-05-05 Thread Robert Taylor
One solution would be the following: / robert > -Original Message- > From: Dean A. Hoover [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 05, 2004 8:02 AM > To: [EMAIL PROTECTED] > Subject: inserting delimiters > > > I have a Collection of Strings that

inserting delimiters

2004-05-05 Thread Dean A. Hoover
I have a Collection of Strings that I want to render with delimiters. Suppose The Strings are "AAA", "BBB", and "CCC". For example, I want to delimit the strings with / So the insertion would look like this: AAA/BBB/CCC How would you recommend I go about it? If I were doing this in Java instead of