vote up 1 vote down star
1

Hi I have text editor widget in smalltalk (visual works) that returns a text object, however I want the text returned to be handled as a string object.

How do you parse a text object as a string?

flag

70% accept rate

2 Answers

vote up 2 vote down check

if Text and String are different classes in VW Smalltalk (which I don't have easy access to at the moment), see if you can call yourText asString or perhaps String newFrom: yourText or maybe yourText as: String. Most of these would work in Squeak Smalltalk.

link|flag
x := myInt printString worked fine. – unknown (google) Oct 24 at 23:29
vote up 0 vote down

You send #string to the Text object

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.