Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>$ substring -- binary (relational)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
$              Substring -- binary                        (Relational)


Syntax:        <expC1> $ <expC2>

Type:          Character, Memo

Operands:      <expC1> is a character or memo value that is searched
               for in <expC2>.

               <expC2> is a character or memo value that is the
               target of the substring search.

Description:   The $ operator is a binary relational operator that
               performs a substring search and returns true (.T.) if
               <expC1> is found within <expC2>.

               Note: The search is case-sensitive.


----------------------------------- Examples -------------------------------

   ? "A" $ "ABC"                        && Result: .T.
   ? "a" $ "ABC"                        && Result: .F.


See Also: > < = == >= <= <> Expr_error()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson