This seems to do what you're after - hope it's of use. I'm sure there are better ways of doing this :)
I've created a test case with two rows in a temp table just for completeness as I assumed you have many rows that you wish to process.
CREATE TABLE #Test (Txt NVARCHAR(MAX))
INSERT INTO #Test (Txt) VALUES
(N'General Benefits: The purpose of this is to explain the benefits from using our products. Health Factors: Please check out our website for a complete list. Comments: Any comment added by the user is entered here. Contact Us: Please call us at xxx-xxx-xxxx'),
(N'General Benefits: Some other benefits. Health Factors: Some other factors. Comments: Love your work. Contact Us: Call us zzz-zzz-zzzz');
DECLARE @PAT1 NVARCHAR(MAX) = N'General Benefits:';
DECLARE @PAT2 NVARCHAR(MAX) = N'Health Factors:';
DECLARE @PAT3 NVARCHAR(MAX) = N'Comments:';
DECLARE @PAT4 NVARCHAR(MAX) = N'Contact Us:';
SELECT
SUBSTRING(Txt, A + LEN(@PAT1) + 1, B - A - LEN(@PAT1) - 1) 'General Benefits',
SUBSTRING(Txt, B + LEN(@PAT2) + 1, C - B - LEN(@PAT2) - 1) 'Health Factors',
SUBSTRING(Txt, C + LEN(@PAT3) + 1 , D - C - LEN(@PAT3) - 1) 'Comments',
SUBSTRING(Txt, D + LEN(@PAT4) + 1 , LEN(Txt) - LEN(@PAT4) - 1) 'Contact Us'
FROM #Test
CROSS APPLY (SELECT
A = PATINDEX('%'+@PAT1+'%', Txt),
B = PATINDEX('%'+@PAT2+'%',Txt),
C = PATINDEX('%'+@PAT3+'%',Txt),
D = PATINDEX('%'+@PAT4+'%',Txt)
) Q
General Benefits Health Factors Comments Contact Us
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The purpose of this is to explain the benefits from using our products. Please check out our website for a complete list. Any comment added by the user is entered here. Please call us at xxx-xxx-xxxx
Some other benefits. Some other factors. Love your work. Call us zzz-zzz-zzzz
(2 row(s) affected)