sorry, i forgot about that webbs is html allowed. Ok here it is again i need to substitute a space character: "&.nbsp"(yes i know that's not right but other wise you would see a space), for " "(actual). But only when "&.nbsp" is within an HTML tag. So replace this:<br>
hello&.nbsp;hi<br>
with this<br>
hello&.nbsp;hi<p>
How can i do this? <p>
I used a "." to "turn off" html tags in this doc.<p>
<p>
: What i have to be able to do is take input from a user, place it in a string, and than take that string and substitute all "" for " " that are within an HTML tag, something like this:<br>
: i have the string:<br>
: hellohi<br>
: i need to change it to:<br>
: hellohi<p>
: Can someone help me with this?<br>
: Thanks<p>
: -Code<br>
: code@ync.net<p>