English 中文(简体)
以字符串数组进行三角
原标题:Trimming with array of string
  • 时间:2012-05-24 00:59:44
  •  标签:
  • c#
  • trim

i 想要创建一个简单的程序, 这个程序我有一个字符串阵列, 对于每个字符串, 我想检查它是否包含指定字符, 我想删除它。 首先, i 将指定字符替换为空格, 当我试图缩小空格时它不起作用。 这里是我的代码 < precode> char[ ] arr =新字符[ ] {{}; 对于 (int i = 0; i < words. Length; i+++) { words[i] = words[i]. replace( 0, ) ; word[i] = words[i].Trim(rr); } < div >

最佳回答

如果您想要删除所有空格, 而不是 words[ i] = words[ i].Trim( rr); , 您可以使用 :

words[i] = words[i].Replace(" ", string.Empty);

就我个人而言,为了你第一次被除名(0),我也会这样做:

words[i] = words[i].Replace("0", string.Empty); // Remove all "0" characters
words[i] = words[i].Replace(" ", string.Empty); // Remove all spaces

或者,甚至:

words[i] = words[i].Replace("0", string.Empty).Replace(" ", string.Empty); 
问题回答

Trim () > 只移除领先和尾随空格。 它不会删除字符串中间的空格。 确实不需要做所有这些工作。 您可以拨打 < code> replace () 单通电话 < a href=" http:// msdn. microsoft. com/ en- us/library/ fk49wtc1. aspx" rel = “ nofollow” > 相应超载 :

for(int i = 0; i < words.Length; i++)
    words[i] = words[i].Replace("0", "");

至於喜欢单句者,

words = words.Select(i => i.Replace("0", "").Replace(" ", "")).ToArray();




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...