Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与 SQL 类似,我想知道您是否能够添加 ampscript 来说明值是否类似于通配符。例如,%%[IF 值 LIKE "%1234" THEN]%%
您可以使用indexOf函数:
%%[ if indexof(AttributeValue("value"),"1234") > 0 then ]%%
如果需要更具体,您可以使用length和subString函数的组合。