Like the title, I want to find strings between two identical symbols, like
declare @str varchar(255);
set @str = 'I want to + get + all results + out + between two + plus sign'
So the intricacy here is @str
has many identical plus symbols, and I just want to take out the string all results
.
How should I do that with T-SQL?