I’m sending a string through a socket connection from a rails app to
another application. The string is delimited with 240.chr. On windows it
runs fine, on Linux, it seems to put in a different looking character in
for 240.chr. Is this some sort of encoding issue? Is there something
simple
I am overlooking? Thanks, RVic.
delim = 240.chr
if userSelected.blank?
userSelected = userSending
end
I'm sending a string through a socket connection from a rails app to another
application. The string is delimited with 240.chr. On windows it runs fine, on
Linux, it seems to put in a different looking character in for 240.chr. Is this
some sort of encoding issue? Is there something simple I am overlooking? Thanks,
RVic.
delim = 240.chr
if userSelected.blank?
userSelected = userSending
end
s=row.to_s+delim+userSending+delim+userSelected+delim+message+delim+notes
If youre using 240.chr as a delimiter, what difference does it make what
the Glyph looks like? The other side should just split on 240.chr.