本文介绍了在字符串生成器中的值后附加单引号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#.NET中使用字符串生成器时,我需要获取输出为"1234567".
我从数据表传递的那些记录.

提前谢谢...

删除了喊叫声.

I need to get output as ''1234567'' when using string builder in C#.NET.
Those reocrds I pass from data table.

Thanks in advance...

Removed shouting.

推荐答案

StringBuilder s = new StringBuilder();

s.AppendFormat("'{0}'", myData);




干杯




Cheers


string output = string.Format("'{0}'", data);


string s = "1,2,3"; string replaced = "'"+s.Replace(",", "','")+"'"; 






or


string s = "123"; string replaced = "''"+s.Replace("", "''")+"''"; 



检查是否有上述帮助,但仍不确定您到底要求什么



check if the above help , still not sure what exactly r u asking for


这篇关于在字符串生成器中的值后附加单引号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 02:28