如何删除C#.net中的字符串引用 [英] how to remove Quotations of string in C#.net

查看:67
本文介绍了如何删除C#.net中的字符串引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在删除文本框中搜索字符串的引号.
但是我想在搜索字符串中插入文本.


也就是说,如果我的搜索字符串就像企业管理".
它分为两个词,并以(空格和空格)插入.
就像将我的字符串替换为business(space and space)adminstration.

we are removing quotations of a search string in textbox.
But i want to insert text in search string.


that is if my search string is like "business adminstration".
It has divide as two words and insert with (space and space).
That is like to replace my string as business(space and space)adminstration.

推荐答案

我认为最简单的解决方案是.

I think the easy solution is to.

string search = "\"business adminstration\"";
search = search.Replace("\"", string.Empty);
search = search.Replace(" ", " and ");

Console.WriteLine(search);



输出:

商业和行政管理

或者也许使用正则表达式.



Output:

business and adminstration

Or perhaps work with regular expression.


这篇关于如何删除C#.net中的字符串引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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