In This Example:

<?
list($A) = sscanf("Hi How Are ^^^You^^^ I'm Fine","Format");
Echo $A;
?>

I Want $A equal the string between ^^^ and ^^^
That mean:
$A="You"

What is the format which will solve this problem.

Thanks