No, TRUNCATE is all or nothing. You can do a DELETE FROM <table> WHERE <conditions> but this loses the speed advantages of TRUNCATE.
TRUNCATE
DELETE FROM <table> WHERE <conditions>