Crystal Report String与空格的比较

时间:2013-10-02 11:33:19

标签: string crystal-reports comparison string-comparison

我想比较Crystal Reports(CR)中的两个问题。对于使用此函数的字符串比较。

(IF({?p_promotion_grid} = ' ' and not(isnull({@promotionGrid})))
THEN {@promotionGrid} LIKE '*'
ELSE {@promotionGrid} = {?p_promotion_grid} )

当promotionGrid值是一个单词时,比较有效。但是当String包含空格时。例如 - AAA BBB它不起作用。

如何比较这个字符串?

我试过这个StrCmp(str1,str2,compare),但即使str1和str2相同,ELSE条件也不会成真。任何想法如何进行字符串比较?

1 个答案:

答案 0 :(得分:0)

if instr({Table.Remarks},"Bank") > 0 then
    /// true section
else
    // false section
end if