xsl-list
[Top] [All Lists]

Re: Read a txt file

2004-12-15 05:26:13

I need my xsl reads a txt file, like this:

XSL1 can only read XML files, although you can easily make an xml file
wrapper around your text

if you have a file.txt that you know doesn't have any < or or > & characters
in it then you can make a file.xml that looks like

<!DOCTYPE vector [
<!ENTITY x SYSTEM "file.txt">
]]>
<vector>&x;</vector>


then in your xxslt you can go

<xsl:copy-of select="document('file.xml')"/>

and will get


<vector>
10101010101010101111010101010
10101011100001010101010101010
00011010101010101010101011011
</vector>


as the result.


  But I have other problem:
  This values are of a multidimensional vector (matrix).


  In XML, I can't have a element that has a vector
  structure, can I? What could  I do in this case?

I have no idea what you mean here, you can have any structure you want
for example to express the matrix in mathml you'd have something like


<matrix>
  <matrixrow>
    
<cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>1</cn><cn>1</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn>
  </matrixrow>
  <matrixrow>
    
<cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>1</cn><cn>1</cn><cn>0</cn><cn>0</cn><cn>0</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn>
  </matrixrow>
  <matrixrow>
    
<cn>0</cn><cn>0</cn><cn>0</cn><cn>1</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>1</cn><cn>0</cn><cn>1</cn><cn>1</cn>
  </matrixrow>
</matrix>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>