如何在C#中显示结果?

时间:2009-09-26 08:05:47

标签: c# console.writeline

我有一个程序见下文

我制作了方法,但我想在控制台中显示它 而不是像console.writeline(str.length)这样的简单方法。我想用我制作的方法。

请有人帮助我

提前致谢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "dit is een test 1,2,3";
            Console.WriteLine(str);
        }

        public int CountAllNumbersAndChar(string str) 
        { 
            return str.Length; 
        }

    }
}

更新

我现在有以下程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "this is a test 1,2,3";
            int length = CountAllNumbersAndChar(str);
            Console.WriteLine(str);
            Console.WriteLine(length);// met de methode maar kan handiger met onderstaand voor beeld
      // Console.WriteLine(str.Length);
       // int numbers = str.Count(Char.IsNumber); // de makelijkste makelijke manier 
        //Console.WriteLine(numbers);
        int countnumber = CountNumbers(str) ;
        Console.WriteLine(countnumber);
        int countwords = words(str);
        Console.WriteLine(countwords);


    }

    public static int CountAllNumbersAndChar(string str)
    {
        return str.Length;
    }
    public static int CountNumbers(string str)
    {
        return str.Count(Char.IsNumber);
    }
    public static int words(string str)
    {
        int words = str.Split().Count(str => str.All(Char.IsLetter));
    }
}

}

但它仍然无效 有人能说我要改变什么吗?

4 个答案:

答案 0 :(得分:4)

这是你想要的吗?

Console.WriteLine(CountAllNumbersAndChar(str));

答案 1 :(得分:2)

这是你如何做到的。请注意以下代码中的public static int CountAllNumbersAndChar(string str)。如果您未将CountAllNumbersAndChar声明为Main,则无法从static致电{1}}。

using System; 
using System.Collections.Generic; 
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "this is a test 1,2,3";
            int length = CountAllNumbersAndChar(str);    

            Console.WriteLine(length);
        }

        public static int CountAllNumbersAndChar(string str) 
        { 
            return str.Length; 
        }
    }
}

答案 2 :(得分:0)

您可以将LINQ用于所有这些任务。虽然我不确定你是否熟悉它。这很简单,所以看看代码,看看你是否可以关注。

string str = "dit is een test 1,2,3";

// Length of the string
int chars = str.Length;

// LINQ: Count all characters that is a number
int numbers = str.Count(Char.IsNumber);

// LINQ: Split the string on whitespace and count the 
// elements that contains only letters
int words = str.Split().Count(s => s.All(Char.IsLetter));

Console.WriteLine(chars); // -> 21
Console.WriteLine(numbers); // -> 3
Console.WriteLine(words); // -> 4

当然,我在计算单词的方式并不完美,但它应该让你开始。对于更准确的方法,你应该谷歌它,因为有数百个例子。

答案 3 :(得分:0)

我想你想计算字符串中的数字数

      public int CountAllNumbersAndChar(string str)         
       {
           return  str.Split(new char[]{' ',','},
         StringSplitOptions.RemoveEmptyEntries).Count    
         (
           x=>
           {
               int d;
               return int.TryParse(x,out d);
           }
        );   
       }