AIML- <star>タグ
<star> タグはワイルドカードとの照合に使用されます * <pattern>タグの文字。
構文
<star index = "n"/>
n <pattern>タグのユーザー入力内の*の位置を示します。
次の例を考えてみましょう-
<category>
<pattern> A * is a *. </pattern>
<template>
When a <star index = "1"/> is not a <star index = "2"/>?
</template>
</category>
ユーザーが「マンゴーは果物です」と入力した場合。その後、ボットは「マンゴーが果物ではない場合」と応答します。
例
内部にstar.aimlを作成します C > ab > bots > test > aiml とstar.aiml.csv内部 C > ab > bots > test > aimlif ディレクトリ。
star.aiml
<?xml version = "1.0" encoding = "UTF-8"?>
<aiml version = "1.0.1" encoding = "UTF-8"?>
<category>
<pattern>I LIKE *</pattern>
<template>
I too like <star/>.
</template>
</category>
<category>
<pattern>A * IS A *</pattern>
<template>
How <star index = "1"/> can not be a <star index = "2"/>?
</template>
</category>
</aiml>
star.aiml.csv
0,I LIKE *,*,*,I too like <star/>.,star.aiml
0,A * IS A *,*,*,How <star index = "1"/> can not be a <star index = "2"/>?,star.aiml
プログラムを実行する
コマンドプロンプトを開きます。に移動C > ab > 次のコマンドを入力します-
java -cp lib/Ab.jar Main bot = test action = chat trace = false
結果を確認する
次の出力が表示されます-
Human: I like mango
Robot: I too like mango.
Human: A mango is a fruit
Robot: How mango can not be a fruit?
<star index = "1" />は<star />としてよく使用されます