prolog 中 char* 的语法是什么

发布于 2024-12-18 16:00:48 字数 84 浏览 0 评论 0原文

我想知道序言中 char* 的语法,我想将其用于字符列表。我已使用 list=integer* 作为整数列表,但我不知道序言中字符列表的 sysntax。

I want to know the syntax for char* in prolog which i want to use for a list of a characters. I have used list=integer* for a list of integers but i dont know sysntax for characters list in prolog.

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

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

发布评论

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

评论(2

浅听莫相离 2024-12-25 16:00:48

在 SWI-Prolog 中,您必须使用 _string_to_list /2 来创建字符串:

?- A = "ABCD"。
A = [65,66,67,68]。

?- string_to_list(A, "ABCD").
A = "ABCD"。

In SWI-Prolog, you must use _string_to_list /2 to create strings :

?- A = "ABCD".
A = [65,66,67,68].

?- string_to_list(A, "ABCD").
A = "ABCD".

南烟 2024-12-25 16:00:48

我猜你正在使用 Turbo Prolog。
在这种情况下,已经有一个用于字符串的预定义域string

这是一个用法示例:

predicates
  test(string, string).

clauses
test(X, Z):- concat("Hello ", X, Z).

示例输出:

Goal: test("World",Z).
Z=Hello World
1 Solution

I guess you are using Turbo Prolog.
In that case, there is already a predefined domain string used for strings.

Here goes a usage example:

predicates
  test(string, string).

clauses
test(X, Z):- concat("Hello ", X, Z).

Sample output:

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