I want to maintain an iText XML document that I can
transform at will.  To create the XML I used code that
was originally writing PDF and then I switched the
writer it was using.  In the PDF-generating code I was
using a particular SplitCharacter implementation to
deal with file paths in a Table:

SplitCharacter split = new SplitCharacter()
{
  public boolean isSplitCharacter(char c)
  {
    return
     (c < 48 || (c > 57 && c < 65) ||
     (c > 90 && c < 97) || c > 122);
  }//end isSplitCharacter
};//end anonymous SplitCharacter

Basically I'm splitting on everything except alphas
and numerics, right?  This is great in the PDF.  But
is there anything I can do if I want to continue
splitting this way when I go from XML to PDF?

Thanks,
Matt

__________________________________________________
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com

_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to