Discussion:
ASCII character 254
(too old to reply)
d***@gmail.com
2015-10-11 20:18:19 UTC
Permalink
I need to use an ASCII value of 254 as a delimiter.

How to do I obtain this character in VisualWorks, similar to how 'cr' is represented as character 13?
Joachim
2015-10-12 06:15:27 UTC
Permalink
Not sure if VisualWorks has any special limitations in this area, but in VA Smalltalk you can use these two expressions

254 asCharacter
Character codePoint: 254

both work as expected.

HTH

Joachim
d***@gmail.com
2015-10-12 09:29:06 UTC
Permalink
Post by Joachim
Not sure if VisualWorks has any special limitations in this area, but in VA Smalltalk you can use these two expressions
254 asCharacter
Character codePoint: 254
both work as expected.
HTH
Joachim
Thanks.

The second method is exactly what I was looking for.

Daniel

Loading...