Hi, Please help on this. I have several lines in a file in the following format:
{Name=abc,Number=423,CustNo=123}
{Name=abc,Number=890,CustNo=5665}
{Number=423,Name=efg,CustNo=7878}
{Name=abc,Number=423,CustNo=123}
{CustNo=7879,Name=abc,Number=423}
{CustNo=7879,Name=abc,Number=890}
Basically I want to pull all the unique "Number" field values irresepctive of other fields. It can be there anywhere in the line and with different values.
Appreciate your help.