Smalltalk - 将文本对象转换为字符串
您好,我在smalltalk(视觉作品)中有文本编辑器小部件,它返回一个文本对象,但是我希望返回的文本作为字符串对象处理。
如何将文本对象解析为字符串?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果
Text
和String
是 VW Smalltalk 中的不同类(我目前无法轻松访问),看看是否可以调用yourText asString< /code> 或
String newFrom: yourText
或yourText as: String
。其中大部分都可以在 Squeak Smalltalk 中使用。if
Text
andString
are different classes in VW Smalltalk (which I don't have easy access to at the moment), see if you can callyourText asString
or perhapsString newFrom: yourText
or maybeyourText as: String
. Most of these would work in Squeak Smalltalk.您将 #string 发送到 Text 对象
You send #string to the Text object