<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">That is an apostrophe. You can also do
      <br>
      <br>
      <font size="3" face="Times New Roman"><span style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']</span></font>
      = html_entity_decode(<font size="3" face="Times New Roman"><span
          style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']);<br>
          <br>
          <font size="3">That will get any other HTML entites that might
            be hiding in there.<br>
            <br>
            <font size="3">For the &lt;br&gt;<font size="3">:<br>
              </font></font></font></span></font><br>
      <font size="3" face="Times New Roman"><span style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']</span></font>
      = str_replace('&lt;br&gt;', "\n", <font size="3" face="Times New
        Roman"><span style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']</span></font>);<br>
      <br>
      That's if you're sure all your &lt;br&gt; all the same. Better
      option:<br>
      <br>
      <font size="3" face="Times New Roman"><span style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']</span></font>&nbsp;
      = preg_replace('#&lt;br\s*/?&gt;#i', "\n", <font size="3"
        face="Times New Roman"><span style="font-size:
          12.0pt">$node-&gt;field_book_title['und']['0']['value']</span></font>
      );<br>
      <br>
      That get's all the variations (&lt;br&gt;, &lt;BR&gt;, &lt;br
      /&gt;, etc.)<br>
      <br>
      <pre class="moz-signature" cols="72">Jamie Holly
<a class="moz-txt-link-freetext" href="http://www.intoxination.net">http://www.intoxination.net</a> 
<a class="moz-txt-link-freetext" href="http://www.hollyit.net">http://www.hollyit.net</a></pre>
      On 4/25/2013 8:29 PM, Pia Oliver wrote:<br>
    </div>
    <blockquote cite="mid:5179CA82.7080205@piasworld.com" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      perhaps I copied the wrong instance; what I want to do is to
      replace &amp;#39;&nbsp; with an apostrophe. Your response to me looks
      like it's a quote mark? I mean a single quote mark/apostrophe like
      in "Pia's question"<br>
      <br>
      thanks,<br>
      <br>
      Pia<br>
      <br>
      <blockquote style="border: 0px none;"
        cite="mid:CB99AEDD84838B4D919DE8C443FC5C550D44D5@coconut.evergreen.edu"
        type="cite">
        <div style="margin:30px 25px 10px 25px;" class="__pbConvHr">
          <div style="display:table;width:100%;border-top:1px solid
            #EDEEF0;padding-top:5px">
            <div
              style="display:table-cell;vertical-align:middle;padding-right:6px;"><img
                photoaddress="metzlerd@evergreen.edu"
                photoname="Metzler, David"
                src="cid:part1.08030403.07070504@earthlink.net"
                name="compose-unknown-contact.jpg" width="25px"
                height="25px"></div>
            <div
style="display:table-cell;white-space:nowrap;vertical-align:middle;width:100%">
              <a moz-do-not-send="true"
                href="mailto:metzlerd@evergreen.edu"
                style="color:#737F92
                !important;padding-right:6px;font-weight:bold;text-decoration:none
                !important;">Metzler, David</a></div>
            <div
              style="display:table-cell;white-space:nowrap;vertical-align:middle;">
              <font color="#9FA2A5"><span style="padding-left:6px">April
                  25, 2013 17:01</span></font></div>
          </div>
        </div>
        <div style="color:#888888;margin-left:24px;margin-right:24px;"
          __pbrmquotes="true" class="__pbConvBody">
          <meta content="text/html; charset=ISO-8859-1"
            http-equiv="Content-Type">
          <meta content="Microsoft Word 11 (filtered medium)"
            name="Generator">
          <!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
          <title>asci and html question in Drupal</title>
          <o:smarttagtype name="PersonName"
            namespaceuri="urn:schemas-microsoft-com:office:smarttags"><!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
            <style>
&lt;!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline;}
pre
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
--&gt;
</style>
            <div class="Section1">
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy">You&#8217;re using
                    the wrong escaping syntax for php. You could use \
                    but I find it easier to use single quotes like this:
                    <o:p></o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy"><o:p>&nbsp;</o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy">The double
                    quote is surrounded by &#8216; &nbsp;if you can&#8217;t read it.
                    <o:p></o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy"><o:p>&nbsp;</o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy"><o:p>&nbsp;</o:p></span></font></p>
              <p class="MsoNormal"><font size="3" face="Times New Roman"><span
                    style="font-size:
                    12.0pt">_replace("&amp;#39;",<font color="red"><span
                        style="color:red">&#8217;&#8221;&#8217;</span></font>,$node-&gt;field_book_title['und']['0']['value']);</span></font><font
                  size="2" color="navy" face="Arial"><span
                    style="font-size:10.0pt;font-family:Arial;
                    color:navy"><o:p></o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy"><o:p>&nbsp;</o:p></span></font></p>
              <p class="MsoNormal"><font size="2" color="navy"
                  face="Arial"><span style="font-size:
                    10.0pt;font-family:Arial;color:navy"><o:p>&nbsp;</o:p></span></font></p>
            </div>
          </o:smarttagtype></div>
      </blockquote>
      <br>
      <div class="moz-signature">-- <br>
        <span style="color: rgb(102, 51, 51); font-weight: bold;">Pia
          Oliver</span><br>
        <br>
        <a moz-do-not-send="true" class="moz-txt-link-rfc2396E"
          href="http://www.piasworld.com">&lt;http://www.piasworld.com&gt;</a></div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
    </blockquote>
    <br>
  </body>
</html>