如何在 ATG 的列表值中添加逗号
How to add comma in the list value in 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
在 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