如何在ATG中的列表值中添加逗号



在ATG中,我有一个列表和一个属性文件,我需要在列表中添加逗号(,(值

Sample.java

List<String> sampleList = new ArrayList();

sample.properties

sampleList=/
a,b,c ,
c,d,e

在ATG中,默认逗号是指下一个值,但我需要在字符串值中使用逗号(,(。在迭代时间中,逗号分隔值

预期结果:

0=a,b,c
1=c,d,e

实际结果:

0=a
1=b
2=c
3=d
4=e
5=f

双逗号(,,(在ATG配置文件中转义逗号的特殊含义。

sampleList=/
a,,b,,c ,
c,,d,,e

相关内容

  • 没有找到相关文章

最新更新