Smalltalk - 将文本对象转换为字符串

发布于 2024-08-08 17:09:46 字数 91 浏览 11 评论 0原文

您好,我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空气里的味道 2024-08-15 17:09:46

如果 TextString 是 VW Smalltalk 中的不同类(我目前无法轻松访问),看看是否可以调用 yourText asString< /code> 或String newFrom: yourTextyourText as: String。其中大部分都可以在 Squeak Smalltalk 中使用。

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.

朱染 2024-08-15 17:09:46

您将 #string 发送到 Text 对象

You send #string to the Text object

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文