<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!