Spreadsheet_Excel_Writer()

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • anithajacobk
    New Member
    • Sep 2007
    • 1

    Spreadsheet_Excel_Writer()

    When exporting a document contains the following lines, I'm gettng unnecessary symbols: What can i do to resolve this??

    Carboxylic acids comprising perfluoropolyet her chains, of formula:
    T1—CFW1—O—Rf—CF W2—T2 (I)
    wherein T1, T2, equal to or different from each other, are selected from the group formed of —CH2—B—Y—(COOH) n, —CH(CF3) O—Y(COOH)n, —F, —CF3, —C2F5, —(C2F4)Cl, wherein B=—O— or —S—; Y=C1—C20 alkylene chain, n=1-4; with the proviso that at least one of the
  • Weisbartb
    New Member
    • Aug 2007
    • 36

    #2
    Originally posted by anithajacobk
    When exporting a document contains the following lines, I'm gettng unnecessary symbols: What can i do to resolve this??

    Carboxylic acids comprising perfluoropolyet her chains, of formula:
    T1—CFW1—O—Rf—CF W2—T2 (I)
    wherein T1, T2, equal to or different from each other, are selected from the group formed of —CH2—B—Y—(COOH) n, —CH(CF3) O—Y(COOH)n, —F, —CF3, —C2F5, —(C2F4)Cl, wherein B=—O— or —S—; Y=C1—C20 alkylene chain, n=1-4; with the proviso that at least one of the
    Its very hard to help you when you don't post the source code or reference what it is you are using to produce your results. If you want to strip those symbols you need to find out their ascii codes and use
    [php]
    $data = str_replace(chr (code),'',$data )
    [/php]

    Comment

    Working...