如何在SAP BO Webi报表中的字符串中查找常量

你是对的。您可以使用Match()或Pos()之类的函数。您可以使用MATCH([Dimension];“ * def *”))),这将为您提供输出,而通配符将匹配字符串的开头。

Pos Function用于返回特定字符串的位置。

您也可以尝试使用Pos()函数,如下所示-

=Pos("def abc ghi";"def")
returns 1
=Pos("def abc ghi";"abc")
returns 5
=Pos("def abc ghi";"xyz")
returns 0