console app that converts uppercase to lower and vice versa
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++)
{
Lightning03
Junior Poster in Training
92 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
ddanbe
Senior Poster
3,829 posts since Oct 2008
Reputation Points: 2,070
Solved Threads: 661
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.
thines01
Postaholic
2,424 posts since Oct 2009
Reputation Points: 445
Solved Threads: 402
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.
Lightning03
Junior Poster in Training
92 posts since Mar 2011
Reputation Points: 10
Solved Threads: 0
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
}
hericles
Practically a Posting Shark
823 posts since Nov 2007
Reputation Points: 136
Solved Threads: 166
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.
thines01
Postaholic
2,424 posts since Oct 2009
Reputation Points: 445
Solved Threads: 402
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();
}
}
}
Momerath
Nearly a Senior Poster
3,384 posts since Aug 2010
Reputation Points: 1,232
Solved Threads: 558