gpt4 book ai didi

rebol - 将问题转换为字符串

转载 作者:行者123 更新时间:2023-12-04 02:56:08 26 4
gpt4 key购买 nike

在 Rebol 2 中,您可以使用简单的 to string!issue 转换为 string例如,

>> to string! #12345-12345  
== "12345-12345"

在 Rebol 3 中行为是不同的。例如,

>> to string! #12345-12345  
== "#12345-12345"

我目前的解决方案是,

remove to string! #12345-12345  
== "12345-12345"

但我不喜欢这个解决方案,因为它假设了字符串表示形式。是否有更好的方法从问题中检索值(value)?

最佳答案

在 R3 中,问题! 类型 has been changed to a word subtype (即 any-word! 排版的成员):

>> any-word? #12345-12345
== true

所以您的问题可以改写为:如何获取任何词类型的规范拼写?

我想建议的方法是先转换为普通的 word!,然后再将其转换为字符串:

>> form to word! #12345-12345
== "12345-12345"

关于rebol - 将问题转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16659714/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com