Getting a Specific value from a file?

Hi
I have the following file:
linasplg11:/opt/kk/default/bin # ipcore_status
#################
# IPCORE STATUS #
#################
#
# DrData Version : DRDATA_A.02.12.00007 , Installed Fri Dec 5 16:09:32 IST 2008
# IpCore Version : IPCORE_A.02.12.00011 , Installed Fri Dec 5 16:09:42 IST 2008
#
MEB PID PORT STATUS

input 14935 10101 Running
sip-bo 14960 10107 Running
sip-sfe1 14986 10123 Running
sfe2 15030 10102 Running
Ipcore session has been running for 2 days, 12 hours, 32 mins and 25 seconds

============

I want to get IpCore Version : IPCORE_A.02.12.00011 only.

Can any one please help me on this?

Advance Thanks

With GNU grep:

grep -o "IpCore Version : IPCORE_A.02.12.00011" "$FILE"

But if you know what you wnat, all you need is to check whether it is in the file:

string="IpCore Version : IPCORE_A.02.12.00011"
if grep "$string" > /dev/null
then
  printf "%s\n" "$string"
else
  printf "'%s' not found\n" "$string"
fi