AIML - Etiqueta <star>
<star> La etiqueta se usa para coincidir con el comodín * carácter (s) en la etiqueta <patrón>.
Sintaxis
<star index = "n"/>
n significa la posición de * dentro de la entrada del usuario en la etiqueta <patrón>.
Considere el siguiente ejemplo:
<category>
<pattern> A * is a *. </pattern>
<template>
When a <star index = "1"/> is not a <star index = "2"/>?
</template>
</category>
Si el usuario ingresa "Un mango es una fruta". entonces el bot responderá como "¿Cuándo un mango no es una fruta?"
Ejemplo
Crea star.aiml dentro C > ab > bots > test > aiml y star.aiml.csv dentro C > ab > bots > test > aimlif directorios.
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
Ejecutar el programa
Abra el símbolo del sistema. IrC > ab > y escriba el siguiente comando:
java -cp lib/Ab.jar Main bot = test action = chat trace = false
Verificar el resultado
Verá la siguiente salida:
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" /> se usa a menudo como <star />