本文介绍了使用testContextInstance读取CSV时无法读取前缀"0"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI专家,

我正在使用-testContextInstance.DataRow["UserKey1"].ToString();
读取.CSV文件但是如果UserKey1数据是 05453 ,则testContextInstance返回 5453 .

无法读取前缀"0".

我希望前缀的数据由testContextInstance返回.
有任何想法吗?

谢谢
Rohit

HI Experts,

I am reading a .CSV file using - testContextInstance.DataRow["UserKey1"].ToString();
But if UserKey1 data is 05453 then testContextInstance returns 5453.

The Prefix ''0'' is not read.

I wanted the data with prefix ''0'' to be returned by testContextInstance.
Do any any have any Idea?

Thanks
Rohit

推荐答案

testContextInstance.DataRow["UserKey1"].ToString().PadLeft(5, ''0'')


这篇关于使用testContextInstance读取CSV时无法读取前缀"0"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-23 17:40