Joined: March 21st, 2007, 10:44 am Posts: 3188 Location: UK
Opus: Evolution
|
Opus' escape character is backslash (\) but if you are saving the example string given using scripting as either a string in quotes or string in a variable then this problem shouldn't occur.
IE Either:
textObj = OpenFile("c:\\myText.txt")
textObj.WriteLine( '<div class="contentItem"/> ')
or
myFish = '<div class="contentItem"/> '
textObj = OpenFile("c:\\myText.txt")
textObj.WriteLine(myFish )
Mack
_________________ When you have explored all avenues of possibilities, what ever remains, how ever improbable, must be the answer.
Interactive Solutions for Business & Education Learn Anywhere. Learn Anytime.
www.interaktiv.co.uk +44 (0) 1395 548057
|
|