在字符串替换{X}令牌 [英] Replace {x} tokens in strings

查看:152
本文介绍了在字符串替换{X}令牌的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有一个模板网址,如:

<$p$p><$c$c>http://api.example.com/sale?auth_user=xxxxx&auth_pass=xxxxx&networkid={networkid}&category=b2c&country=IT&pageid={pageid}&programid=133&saleid=1&m={master}&optinfo={optinfo}&publisher={publisher}&msisdn={userId}

和我对这些恒定的令牌值。在C#中如何能代替所有这些令牌?


解决方案

我认为最简单的的foreach 词典与string.replace 就足够了。

  VAR值=新词典&LT;字符串,字符串&GT; {
    {{NETWORKID},WHEEE !! }
    //等等。
};
VAR URL = \"http://api.example.com/sale?auth_user=xxxxx&auth_pass=xxxxx&networkid={networkid}&category=b2c&country=IT&pageid={pageid}&programid=133&saleid=1&m={master}&optinfo={optinfo}&publisher={publisher}&msisdn={userId}\";的foreach(在values​​.Keys VAR键){
    URL = url.Replace(键,值[关键]);
}

We have a template URL like:

http://api.example.com/sale?auth_user=xxxxx&auth_pass=xxxxx&networkid={networkid}&category=b2c&country=IT&pageid={pageid}&programid=133&saleid=1&m={master}&optinfo={optinfo}&publisher={publisher}&msisdn={userId}

and I have values for these constant tokens. How can replace all these tokens in C#?

解决方案

i think simplest foreach and Dictionary with String.Replace will be enough

var values = new Dictionary<string, string> {
    { "{networkid}", "WHEEE!!" }
    // etc.
};
var url = "http://api.example.com/sale?auth_user=xxxxx&auth_pass=xxxxx&networkid={networkid}&category=b2c&country=IT&pageid={pageid}&programid=133&saleid=1&m={master}&optinfo={optinfo}&publisher={publisher}&msisdn={userId}";

foreach(var key in values.Keys){
    url = url.Replace(key,values[key]);
}

这篇关于在字符串替换{X}令牌的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆