【发布时间】:2015-03-25 14:41:46
【问题描述】:
我正在尝试使用 CL-PPCRE 库为这个简单的 Perl 代码找到解决方案:
if (/\p{Space}/){
print "This string has some spaces\n";
}
我是 CL-PPCRE 的新手并尝试过:
(scan "\\p{\\#Space}" "The String has some white spaces")
;我收到一条错误消息,提示属性 #/Space 不存在。
如何执行等价的?
【问题讨论】:
标签: common-lisp cl-ppcre