Hi Sunil,
Yes, this is certainly possible. If you want to use wildcards, try the
following find criteria (include the quotes):
"*[i]*"
In explaining this find critera, I will enclose all of the symbols in <>
The above find criteria will tell find to look for a quote <"> followed by
any one or more character <*> followed by one or more occurances of i <[i]>
followed by any one or more character <*> followed by a quote <">
Or, with regular expressions, this find criteria should also work:
".*[i].*"
This regular expression tells find to look for a quote <"> followed by any
character that occurs zero to many times <.*> followed by any occurance of
i <[i]> followed by any character that occurs zero to many times <.*>
followed by a quote <">
Regards,
Fiona
--------------------------------------------------------------------
This reply is provided AS IS, without warranty (express or implied).
--------------------
>Content-Class: urn:content-classes:message
>From: "Sunil" <suniltg@achayans.com>
[quoted text clipped - 31 lines]
>Thanks in Advance!
>Sunil