关于字符串的截取
十万火急关于字符串的截取string cl_img txtimg.Textcl_img是存储图片的路径的字符串,我现在要截取图片
十万火急 关于字符串的截取
string cl_img = txtimg.Text;
cl_img是存储图片的路径的字符串,我现在要截取图片的后缀名怎么办
大哥帮帮忙
[解决办法]
取最后一个/后面的.的数据
substring, indexof, split
很多方法都可以
[解决办法]
好像是
string ext=cl_img.SubString(LastIndexOf(".")+1);
[解决办法]
1、如果你的路径的物理路径,可以如下获取:
C# code string strExt = System.IO.Path.GetExtension(cl_img);
[解决办法]
[解决办法]
[解决办法]
[解决办法]
[解决办法]
system.io