Yes :). Try this:
DECLARE @text AS NVARCHAR(10)
SET @text="100"
SELECT CASE WHEN ISNUMERIC(@text) = 1 THEN CAST(@text AS INT) ELSE NULL END
-- returns 100
SET @text="XXX"
SELECT CASE WHEN ISNUMERIC(@text) = 1 THEN CAST(@text AS INT) ELSE NULL END
-- returns NULL
ISNUMERIC() has a few issues pointed by Fedor Hajdu.
It returns true for strings like $ (is currency), , or . (both are separators), + and -.