将文本数据保存到数组

时间:2013-10-31 18:21:17

标签: c# arrays string

我很擅长使用C#。我正在尝试保存输入控制台的数据(文本,如人名),然后“读取”到数组。

我想要保存数据的数组的名称是:name2convert
收集数据的变量(要转换的名称)是:nameEntered

非常感谢任何帮助。我已经在这个工作了几个小时并做了几次搜索,但是我没有找到任何我能理解的答案,因为我对C#的理解有限。我只是试着学习这几周 - 我非常非常环保。任何帮助表示赞赏。

注意:字符串名称是我的测试数组,因此我可以看到我知道如何从数组中读取数据。

我想将数据保存到names2Convert数组。

这是我的代码:

using System;

namespace a061___String_Manipulations___PigLatin
{
///loop - ask for number of names equal to number asked
///  read line, save to array, iterate one up until num equals value asked for

class Program
{
    //Arrays

    String[] names = { "test01", "test02", "test03", "test04", "test05" }; //Test loop

    String[] name2convert = new String[1];

    //Variables & Ints?
    string title = ">>>-- Welcome to the Highly Enlightening World of Igp-ay Atinl-ay --<<< \n";
    string totalIs = "You said you want to convert a total of";
    string listCommands = "Is that correct? If so type (Y)es, (R)enter or (Q)uit";// general commands used
    string addSuffix ="-ah!"; // Add to end of each name
    string nameEntered = "";//name to be converted

    int namesTotal = 0;//

    //Main Method
    public void Play()
    {
        Console.WriteLine(title); //announce program

        askTotal(); //ask number of names

        while (true)
        {
            Console.WriteLine(listCommands);//lists options
            String command = Console.ReadLine().ToLower();//reads user command

            if (command == "y") // if askTotal true save to array? how?
            { 
                askName();//collects name entered
                confirmName();//allows user to confirm spelling, etc.    

                //y save the array   nameEntered   name2convert
                //name2convert.Add(nameEntered);
                name2convert[0] = nameEntered;

                //confirm name 
                for (int i = 0; i < name2convert.Length; i++)
                {
                    Console.WriteLine("Name Aquired: " + name2convert[i]);
                }
            }
            else if (command == "r")
            {
                askName();//asks name
            } 
            else if (command == "q")
            {
                Console.WriteLine("Cheers!"); break; //end
            }
            else
            {
                Console.WriteLine("Sorry. Invalid Request");//try again
            }

            PrintList();//test array 
        }
    }

    //Helper Methods
    public void PrintList()//iterates through, prints names stored in array
    {
        Console.WriteLine("Print List");
        for (int i = 0; i < names.Length; i++)
        {
            Console.WriteLine((i + 1) + ". " + names[i] + addSuffix);
        }
    }

    //iterates through, prints names stored in array
    public void askName()
    {
        Console.WriteLine("Enter Name: ");//Confirming
        String nameEntered = Console.ReadLine().ToLower();// Capture name

        Console.WriteLine("Name Captured: " + nameEntered);//confirming name caught
    }

    //iterates through, prints names stored in array
    public void confirmName()
    {
        Console.WriteLine(listCommands);//Confirming
        String command = Console.ReadLine().ToLower();
    }

    //how many names to convert
    public void askTotal() 
    {
        Console.WriteLine("How many names would you like to convert?");//Ask for content
        namesTotal = int.Parse(Console.ReadLine());

        Console.WriteLine(totalIs + " " + namesTotal);//Confirming
    }

    //Call Application
    static void Main(string[] args)
    {
        Program StringManipulations = new Program();
        StringManipulations.Play(); //Call forth the Pig Latin...

        Console.Read();//
    }
}

}

2 个答案:

答案 0 :(得分:0)

改变这个:

//y save the array   nameEntered   name2convert
name2convert.Add(nameEntered);

对此:

name2convert[0] = nameEntered;

修改

askName()功能更改:

String nameEntered = Console.ReadLine().ToLower();// Capture name 

要:

nameEntered = Console.ReadLine().ToLower();// Capture name

您已将nameEntered类型string声明为您班级的属性。

您为什么使用string然后String?它是相同的,因为stringString的别名(在C#中实际上是System.String) - 但要保持一致!

因为你已经为这个数组分配了内存(它是固定大小的 - 在你的情况下是一个)。 因此,要访问数组中的第一个(也是唯一的)单元格,您应该使用name2convert[0] - 0是任何数组中的第一个索引,通常是C#中的任何其他结构/容器(以及许多其他编程语言)。 / p>

另一种方法(正如您在示例中所尝试的那样)是用户List<String>。 有关数组和列表的更多信息,请参阅此处:

Array tutorial

List tutorial and examples

答案 1 :(得分:0)

如果要保存用户输入的每个字,请使用字符串列表,例如

 List<String> name2convert;

然后

name2convert.Add(nameEntered);

通过列表

foreach (String word in name2convert) 
{
    Console.WriteLine(word);
}