AIML<set>, <get>標籤
<set>
和<get>
標籤用於處理AIML中的變量。 變量可以是預定義變量或程序員創建的變量。
語法
<set>
標籤用於設置變量中的值。
<set name = "variable-name"> variable-value </set>
<get>
標籤用於從變量中獲取值。
<get name = "variable-name"></get>
例如,請考慮以下對話。
Human: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!
示例
在D:/software/ab/bots/test/aiml
目錄中創建一個文件:setget.aiml
,並在D:/software/ab/bots/test/aimlif
目錄中創建一個文件:setget.aiml.csv
。
文件:setget.aiml -
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version = "1.0.1" encoding = "UTF-8"?>
<category>
<pattern>I am *</pattern>
<template>
Hello <set name = "username"> <star/>! </set>
</template>
</category>
<category>
<pattern>Good Night</pattern>
<template>
Hi <get name = "username"/> Thanks for the conversation!
</template>
</category>
</aiml>
文件:setget.aiml.csv
0,I am *,*,*, Hello <set name = "username"> <star/>! </set>,setget.aiml
0,Good Night,*,*, Hi <get name = "username"/> Thanks for the conversation!,setget.aiml
執行程序
打開命令提示符。 進入到目錄:D:/software/ab 並鍵入以下命令 -
java -cp lib/Ab.jar Main bot = test action = chat trace = false
執行上面示例代碼,得到以下結果 -
Human: I am Mahesh
Robot: Hello Mahesh!
Human: Good Night
Robot: Good Night Mahesh! Thanks for the conversation!