作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道,我知道。 “什么换行状态?”,你问。好吧,让我告诉你:
append [] w: first new-line [hello] on
== [
hello
]
W 现在是一个词,在附加到 block 时会创建一个新行。
你可以关闭它,例如在 Rebol 3 中这样:
append [] to word! w
== [hello]
但是我一直没有找到好的开启方式。 Rebol 大师,你可以吗?
澄清:我正在寻找这样的“f”:
append [] f to word! "hello"
其中有一个换行符。
最佳答案
似乎换行状态是根据分配的值在赋值时是否有前面的换行符分配给单词的(我将反射(reflection)该声明的正确性一会儿)。
此函数将相同的值(应保留上下文)重新分配给具有新换行状态的单词:
set-new-line: func [
'word [word!]
state [logic!]
][
set/any word first new-line reduce [get/any word] state
]
我们还可以测试给定单词的换行状态:
has-new-line?: func [
'word [word!]
][
new-line? reduce [get/any word]
]
正在使用中:
>> x: "Foo"
== "Foo"
>> has-new-line? x
== false
>> reduce [x]
== ["Foo"]
>> set-new-line x on
== "Foo"
>> has-new-line? x
== true
>> reduce [x]
== [
"Foo"
]
>> reduce [set-new-line x on set-new-line x off set-new-line x on]
== [
"Foo" "Foo"
"Foo"
]
关于rebol - 我怎样才能在 Rebol 中打开单词的换行状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28076979/
我是一名优秀的程序员,十分优秀!