关于Prolog匹配的问题

发布于 2024-10-16 16:10:31 字数 99 浏览 3 评论 0原文

我是序言新手,我正在尝试匹配以下内容:

rule(blah Variable, ...)。

基本上我试图匹配原子“blah”后跟任何表达式。这可能吗?

I'm brand new to prolog and I'm trying to match something along the lines of this:

rule(blah Variable, ...).

Basically I'm trying to match the atom "blah" followed by any expression. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小镇女孩 2024-10-23 16:10:31

如果您使用 SWI,则可以使用atom_concat/3:

rule(X, ....):-
  atom_concat(blah, Y, X),
   ...

例如:假设 X=blahsomethingelse 那么
atom_concat(blah, Y, X) 将用其他东西实例化 Y。
请注意,atom_concat 仅适用于原子。

If you are using SWI you can use atom_concat/3:

rule(X, ....):-
  atom_concat(blah, Y, X),
   ...

e.g.: Suppose X=blahsomethingelse then
atom_concat(blah, Y, X) will instantiate Y with somethingelse.
Note that atom_concat works only with atoms.

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