asp.net,C#为字符串制定位置前添加追加字符串
stringimg="../../image/product/upload/2014-12-22_1419222187.jpg";我要变成stringimg="../.....
string img = "../../image/product/upload/2014-12-22_1419222187.jpg";
我要变成
string img = "../../image/product/upload/2014-12-22_1419222187_400.jpg";
string img = "../../image/product/upload/2014-12-22_1419222187_270.jpg";
字符串长度随机,后缀名会变,可能是JPG,JIF,PNG 展开
我要变成
string img = "../../image/product/upload/2014-12-22_1419222187_400.jpg";
string img = "../../image/product/upload/2014-12-22_1419222187_270.jpg";
字符串长度随机,后缀名会变,可能是JPG,JIF,PNG 展开
若以下回答无法解决问题,邀请你更新回答
展开全部
实例:
string img = "../../image/product/upload/2014-12-22_1419222187.jpg";
string [] splitValue=img.split('_');
string result=string.Empty;
int length=splitValue.Length;
for(int i=0;i<splitValue.Length-1;i++)
{
result+=splitValue[i];
}
result+="_400";
result+=splitValue[length-1];
return result;
Good Luck! 希望能够帮助到你!
string img = "../../image/product/upload/2014-12-22_1419222187.jpg";
string [] splitValue=img.split('_');
string result=string.Empty;
int length=splitValue.Length;
for(int i=0;i<splitValue.Length-1;i++)
{
result+=splitValue[i];
}
result+="_400";
result+=splitValue[length-1];
return result;
Good Luck! 希望能够帮助到你!
追问
有没办法,从后缀名.JPG .PNG这里追加到前面
追答
什么意思,不太懂你的意思,
是不是要从.jpg截取的呢?
如果是可以把string [] splitValue=img.split('_'); 用string [] splitValue=img.split('.');
截取添加就可以了!
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询