Hi bhasoriya,
If this list is in Column A and word "atulbhai" is in B1 then a formula like:
=COUNTIF(A1:A100,"*"&B1&"*")
will give count of rows where name atulbhai comes.
And to get the list where atulbhai comes repeat formula COUNTIF times down. This is ARRAY formula so needs to be CTRL + SHIFT + ENTERed:
=INDEX($A$1:$A$3,SMALL(IF(ISNUMBER(SEARCH(B1,$A$1:$A$3,1)),ROW($A$1:$A$3)),ROWS($A$1:$A1)))