Hi there guys I need your help so badly as I can't finish my program. The instructions are: create a console application that instantiates a class with a method that takes in a string of values converts upper case to lower case and vice versa. The method also returns the string without special characters. Place your code in a short bond paper.

Method Name: ChangeCase
Class Name: Casing

Here's an example input and output:

INPUT: In$p!red4Progr@mming

OUTPUT: iNPRED4pROGRMMING

Use method: isupper, islower, isdigit etc.

Here what I've accomplished so far (Our professor said my draft is already correct but it still doesn't have any content just how the code is supposed to look like, this is like the skeleton of the program and also I'm not yet done with my loop because I don't know what to put inside... Please Help me)

Here's my code:

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

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            Casing c = new Casing(Console.ReadLine());

            Console.WriteLine(c.Value);

            Main();
        }
    }
    class Casing
    {
        private string sValue;

        public string Value
        {
            get { return sValue; }
            set { sValue = value; }
        }

        public Casing(){}
        public Casing(string value)
        {
            Value = ChangeCase(value);
        }

        public string ChangeCase(string value)
        {
            string changedValue ="";

            for (int i = 0; i < value.Length; i++)
            {

Recommended Answers

All 9 Replies

You have way too much code and adding a class is too complicated for what you are doing. If you're using Visual Studio, start over with a clean project, compile it before doing anything else and then think about the problem.

Think character-array and characters.

A class is needed - this is an academic piece of work and the instructions say to use a class. Always follow the instructions if you want good marks!

Also where is the rest of your code and do your instructions give a definition for special characters?

anyone here guys who can show me how to do the upper case and lower case conversion? any tips? thanks in advance for those who will help I would really appreciate it.

If you want a quick and dirty solution, break your input into a character array and loop through it. For each character check if it isDigit(), if yes no change is required. Then check for the special characters you need to remove. Lastly check isUpper for the character. If false use toUpper, if true use toLower to convert them.
In some simple but ugly pseudo code:

if(isDigit){
   add to output string
} else if(isSpecial) {
  do not add to output string
} else if(isUpper) {
  character.toLower()
  add to output string
} else {
  character.toUpper()
  add to output string
}

Inside your ChangeCase method, I would convert the string to a CharArray then iterate over each character and evaluate (with the isDigit(), isLower(), etc).

If you can use a StringBuilder, please do. Use the Append method to piece together the characters you can keep. ...and return the StgringBuilder as a string.

Please let me know if this is not clear.

Inside your ChangeCase method, I would convert the string to a CharArray

There is no need to do this. You can treat a String as if it was already a character array.

using System;

namespace ConsoleApplication1 {
    class Program {
        static void Main(string[] args) {
            String test = "this is a test string";
            foreach (char c in test) {
                Console.Write("{0}-", c);
            }

            Console.WriteLine();
            for (int i = 0; i < test.Length; i++) {
                Console.Write("{0}-", test[i]);
            }
            Console.WriteLine();

            Console.ReadLine();
        }
    }
}

here is a piece of code you can use in your method:

string s = inputstring;
            string output = "";
            char a;
            foreach (char c in s)
            {
                if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9'))
                {
                    if (Char.IsDigit(c))
                    {
                        output += c;
                    }
                    else if (Char.IsUpper(c))
                    {
                      a =  Char.ToLower(c);
                        output += a;
                    }
                    else if (Char.IsLower(c))
                    {
                     a =   Char.ToUpper(c);
                        output += a;
                    }
                }
            }
            return output;
commented: Copy/Paste never helps anyone =/ -2
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.