Thank you DungeonLords .
WildCard is Like using Regexpr Let me give an exemple :
Suppose this : ABCDEFG
so if i want to use WildCard search i will write this
using ' ? '
AB??EFG
this means search for what is between AB and EF even the value CD has changed .
or using ' * '
AB*G
this means search for all what is between AB and G even the Values : CD or EF has changed .
do you understand me DungeonLords .
i searched in the
FAQ but i cann't find it