As Niko says, it is not clear what you are looking for. But if you want to find rows which matches any of the patterns:
SELECT *
FROM tbl t
WHERE EXISTS (SELECT *
FROM @patterns p
WHERE t.ExpandedFB LIKE t.pattern)
and I would like to know is there a way that I can use this table instead of hardcoding each to my script?