Hello, I have some html text in one of my data sets. I need to replace all occurrences of 'Temp' to 'Temporary'. When I do the following it cuts the string off.
txt = tranwrd(temptext, 'Temp', 'Temporary') ;
This is my full html string
<tr>
<td>1</td>
<td>Temp 1</td>
<td>07/23/2015</td>
</tr>
<tr>
<td>2</td>
<td>Temp 4</td>
<td>03/05/2016</td>
</tr>
<tr>
<td>3</td>
<td>Temp 8</td>
<td>04/13/2017</td>
</tr>
after running the above code txt variable only has
<tr>
<td>1</td>
<td>Temp 1</td>
<td>07/23/2015</td>
</tr>
I'm not sure why this is happening. Thank you for any help.
... View more