如何使用字符串名称调用对象函数
知道为什么以下不起作用吗? (R3) o: make object! [ foo: does [do "bar"] bar: does [print "hello from bar"] ] o/foo ** Script error: bar has n…
我如何在 Rebol 中解析这个?
我将如何将此字符串解析 "a:foo[and it's cousin bar[are here]]" 为 this "a:" "foo[" "and" "it's" "cousin" "bar[" "are" "here" "]" "]" 本质上,…
将带引号的参数传递给 REBOL 3 脚本
我发现几乎不可能将带引号的参数(包含空格)传递给 REBOL 3 脚本。例如: rebol -q script.r "foo bar" 40 如果您检查system/script/args,它包含字…
如何使用Rebol在Windows中访问内网目录和文件?
如何使用Rebol访问Windows中内网的目录和文件?我怎样才能读取这样的文件? : \\name\dir\sub-dir\file.ext 我已经尝试过了, read %//name/dir/sub-d…
为什么在使用 call/wait/output 重定向 shell 之前需要初始化 var
如果我尝试以下代码: call/wait/output {webrequest http://google.com login password} content REBOL 抱怨错误。相反,我必须使用以下内容: conte…
Rebol VID MVC:如果 Rebol 不支持自定义事件,如何从模型更新多个视图?
假设我有一个具有 2 个同时 VID 表单的模型/控制器。如果 Rebol 不支持自定义事件,我将如何更新指向同一模型的 2 个视图?…
如何在同一规则中混合字符串解析和块解析?
很酷的是,Rebol 的 PARSE 方言足够通用,它可以对符号结构以及字符串进行模式匹配和提取。像这样: ; match a single "a" character, followed by an…
如何获取 Rebol 中的单选按钮值?
我尝试了这个,但颜色未知(我在互联网上进行了搜索,令人惊讶的是没有一个人记录它!): V: view layout [ across label "Colours:" r: radio of 'c…
如何通过域名和配置文件修复Rebol Cheyenne 404?
在 Windows Server 2008 上我创建了 reboltutorial.com [ root-dir %/www/ default [%index.html %index.rsp %index.php] ] 它返回 404 错误页面未找…
在 Rebol 中解析此内容的最佳方法
如何从以下 HTML 中提取解析规则中干扰最少的交易收据日期时间? (我希望得到的输出是这样的:“交易收据:04/28/2011 17:03:09”) Transaction Rec…