小伙子,真是一口……
我想从字符串中解析出标记。标记可以是单词或短语,我想要的是用字符串替换任何标记的每次出现。我想在不使用光标的情况下做到这一点。
前任。
declare @str varchar(256) = 'I want this type to be left and of type to be gone. the and a should also be gone of course remains'
create table #Tokens (token varchar(50))
go
insert table (token) values ('of type')
insert table (token) values ('a')
insert table (token) values ('the')
insert table (token) values ('to')
insert table (token) values ('of')
go
我想要的是一个内联函数,它将用''(空字符串)替换字符串中找到的任何标记列表。