Re: Remove quotes from Cell Expression
- To: mathgroup at smc.vnet.net
- Subject: [mg99505] Re: Remove quotes from Cell Expression
- From: dbreiss at gmail.com
- Date: Thu, 7 May 2009 06:31:49 -0400 (EDT)
- References: <gtrl2u$1ol$1@smc.vnet.net>
If you are wanting to suppress the showing of explicit quotation marks
use the option
ShowStringCharacters->False
as an option to the Cell expression.
--David
On May 6, 5:25 am, robert prince-wright <robertprincewri... at yahoo.com>
wrote:
> Can someone show me how to write the list m1 to a notebook without the qu=
otes showing?
>
> m1 = {{"a",b},{c,d}};
> nb = CreateDocument[];
> NotebookWrite[nb, Cell[ToBoxes@Grid[m1],"Text"]]
>
> The expression below gives the right result so there is something missing=
in my limited understanding of Cell expressions.
>
> Grid@m1
>
> Thanks
> Robert