Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
767 views
in Technique[技术] by (71.8m points)

split - C#: splitting a string and not returning empty string

I have a string:

a = "1;2;3;"

And I would like to split it this way:

foreach (string b in a.split(';'))

How can I make sure that I return only 1, 2, 3 and not an 'empty string'?

If I split 1;2;3 then I will get what I want. But if I split 1;2;3; then I get an extra 'empty string'. I have taken suggestions and done this:

string[] batchstring = batch_idTextBox.Text.Split(';', StringSplitOptions.RemoveEmptyEntries);

However, I am getting these errors:

Error 1 The best overloaded method match for 'string.Split(params char[])' has some invalid arguments C:Documents and SettingsagordonMy DocumentsVisual Studio 2008ProjectslomdbEnterDataDataEntryDAL.cs 18 36 EnterData

Error 2 Argument '2': cannot convert from 'System.StringSplitOptions' to 'char' C:Documents and SettingsagordonMy DocumentsVisual Studio 2008ProjectslomdbEnterDataDataEntryDAL.cs 18 68 EnterData

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

String.Split takes an array when including any StringSplitOptions:

string[] batchstring = batch_idTextBox.Text.Split(new [] { ';' }, StringSplitOptions.RemoveEmptyEntries);

If you don't need options, the syntax becomes easier:

string[] batchstring = batch_idTextBox.Text.Split(';');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...