Clean up MS word text

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Clean up MS word text

    Hi,

    I have users copying and pasting from word, and uploading content, problem is,
    the curly quotes in word break my xhtml.

    Is there a coldfusion funcion that cleans up MS word junk?

    Is there any other way I can do this.

    TIA

    Mattastic Guest

  2. Similar Questions and Discussions

    1. Text from Word to DW
      hi: i received more than 20 rather big Word files & i need to convert each one to a HTML one formatted: TITLE (class="title") .... SECTION 1...
    2. MS Word text into PS 7
      When I was working with Photoshop 6, I was able to bring text from a word processing document (such as Word) into a PS plate. This was done by...
    3. #25928 [Opn->Bgs]: Can't create clean non-antialised text with ImageTTFText()
      ID: 25928 Updated by: sniper@php.net Reported By: yvan dot taviaud at m4am dot net -Status: Open +Status: ...
    4. #25928 [NEW]: Can't create clean non-antialised text with ImageTTFText()
      From: yvan dot taviaud at m4am dot net Operating system: RedHat 7.3 PHP version: 4CVS-2003-10-20 (stable) PHP Bug Type: GD...
    5. Clean up Word HTML error
      Hi all, Getting an error when I try to clean up Word HTML documents, wondering if anyone else has run into this: ....At line 644 of...
  3. #2

    Default Re: Clean up MS word text

    Replace all instances of ASCII 145 and 146 (left and right curly quotes) with ASCII 39 (single quote).

    REReplace(myDocument, [Chr(145)-Chr(146)], Chr(39), "ALL")
    jdeline Guest

  4. #3

    Default Re: Clean up MS word text

    Try the technote, "http://www.macromedia.com/go/tn_19617" You can extend it as needed for all the characters that MS automatically switches to.
    ksmith Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139