c#winforms如何重复字符串数组成员?

时间:2012-06-05 18:48:17

标签: c# winforms datagridview arrays

首先,我需要从DataGridView.SelectedCells.Values创建一个字符串数组。然后我需要将该字符串附加到自身,直到达到member.count的限制。例如, 如果

string [] = {"a", "b", "c"};  // Where abc are selectedCells.Values.

新字符串[]应为:

{"a", "b", "c", "a", "b", "c", "a", "b"}

  • 例如,如果限制为8。

我怎么能解决这个问题呢?

4 个答案:

答案 0 :(得分:4)

你可以在for循环中使用%(模数)。

string[] oldArr = new string[3] {"a","b","c"};
string[] newArr = new string[8];
int limit = 8;
for ( int i = 0 ; i < limit ; i++ )
{
    newArr[i] = oldArr[i%oldArr.Length];
}

就是这样。

答案 1 :(得分:3)

为原始数组索引保留一个单独的计数器。类似的东西:

string[] strings = new string[] { "a", "b", "c" };
string[] final = new string[8];

int index = 0;
for(int i = 0;i < 8;++i)
{
    final[i] = strings[index];
    index = (index + 1) % strings.Length;
}

答案 2 :(得分:1)

您可以尝试使用

之类的内容
int yourLimit = 8;
int yourIndexer = 0;
string[] strArr = new string[3] { "a", "b", "c" };
List<string> list = new List<string>();
foreach (DataGridViewCell cell in dataGridView1.SelectedCells)
{
    if (strArr.Contains(cell.Value.ToString()) && yourIndexer < yourLimit)
        list.Add(cell.Value.ToString());
    yourIndexer++;
}
string[] strNewArr = list.ToArray<string>();

我希望这会有所帮助。

答案 3 :(得分:1)

此版本使用Array.Copy进行复制。

    {
        int N=10;
        string[] strings=new string[] { "a", "b", "c" };
        int L=strings.Length;

        int R = (int) Math.Ceiling(N/(1.0*L));
        string[] result=new string[N];
        for(int index=0; index<R; index++)
        {
            int offset = index*L;
            Array.Copy(strings, 0, result, offset, Math.Min(L, N-offset));
        }
    }