Re: More Help

new topic     » goto parent     » topic index » view thread      » older message » newer message

The problem is that your escaped code still contains NUL bytes. A NUL must be replaced by a backslash followed by an ASCII zero. What you have is a backslash followed by the original byte (a NUL).

constant escapee = "\\'\"" & 0 
constant escaped = "\\'\"0" 
tmpString={} 
for j = 1 to len (outRecord[i]) do 
  n = find(outRecord[i][j], escapee) 
  if n != 0 then  
    tmpString &= '\\' & escaped[n] 
  else 
    tmpString &= outRecord[i][j] 
  end if 
end for 

[/quote]

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu