Given two strings like x=?hello? and y=?open?, remove any
character from string x which is also used in string y,
thus making the result x=?hll?.
Answer Posted / preeti
Lttle correction in above answer.
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string str = "mohim";
string str1 = "mo";
remove(str, str1);
}
private static void remove(string str,string str1)
{
char[] abc;
abc = str.ToCharArray();
char[] bcd;
string str4 = "";
bcd = str1.ToCharArray();
for (int i = 0; i < bcd.Length; i++)
{
for (int j = 0; j < abc.Length; j++)
{
if (abc[j] != bcd[i])
{
str4 = str4 + abc[j];
}
}
abc = str4.ToCharArray();
str4 = "";
}
str = "";
for (int j = 0; j < abc.Length; j++)
{
str = str + abc[j];
}
Console.Write("str : ");
Console.Write(str)
}
}
}
output will be
------------------------
str : hi
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between abstraction and polymorphism?
which feature are not hold visual basic of oop?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
Why oops is important?
What is polymorphism and types?
What is interface? When and where is it used?
What is oops in simple words?
i got a backdoor offer in process global,Bangalore..Can i work with it?
What is advantage of inheritance?
Why do we need polymorphism in c#?
What are oops functions?
What is the difference between inheritance and polymorphism?
what is difference between class template and template class?
How is polymorphism achieved?
to find out the minimum of two integer number of two different classes using friend function