英文:
Jmeter CSV data config | pass particular valus from the csv sheet
问题
在JMeter中,是否有任何函数可以从CSV数据表中传递特定的值。
在CSV数据表中,第一列给出了手机号码,我使用参数化来调用这些值。
${手机号码}
在我的CSV数据表中,第一列给出了手机号码,我使用参数化在请求中传递这些值。如果有可用于修剪值的函数。
例如,在CSV数据表中,第一列的值是+911234567890
当我在请求中传递这些值时,不包括国家代码。
${手机号码} == 1234567890
英文:
In JMeter, if there’s any function to pass particular values from the CSV datasheet.
In the CSV datasheet first column gives the mobile number and I call the values using parameterization.
${mobile number}
In my CSV datasheet first column gives the mobile number and I pass the values on my request using the parameterization. if there are any functions available to trim the value.
Ex: in CSV datasheet first column value is +911234567890
When I pass the values in the request without a country code.
${mobile number} == 1234567890
答案1
得分: 0
如果CSV中的所有条目都使用印度国家代码+91
,您可以使用__groovy()函数,如下所示:
${__groovy(vars.get('your-variable-from-csv').substring(3),)}
用真实的JMeter变量名称替换your-variable-from-csv
,该名称来自CSV数据集配置。
英文:
If all your entries in the CSV use India country code of +91
you can use __groovy() function like:
${__groovy(vars.get('your-variable-from-csv').substring(3),)}
Replace the your-variable-from-csv
with the real JMeter Variable name from the CSV Data Set Config
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论