program for string reverse(eg:- i am boy -> boy am i)
Answers were Sorted based on User's Feedback
Answer / pratik
public string Reverse(string str)
{
// convert the string to char array
char[] charArray = str.ToCharArray();
int len = str.Length - 1;
/*
now this for is a bit unconventional at first glance because there
are 2 variables that we're changing values of: i++ and len--.
the order of them is irrelevant. so basicaly we're going with i from
start to end of the array. with len we're shortening the array by one
each time. this is probably understandable.
*/
for (int i = 0; i < len; i++, len--)
{
/*
now this is the tricky part people that should know about it don't.
look at the table below to see what's going on exactly here.
*/
charArray[i] ^= charArray[len];
charArray[len] ^= charArray[i];
charArray[i] ^= charArray[len];
}
return new string(charArray);
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / sudhir2884
class Program
{
static void Main(string[] args)
{
string str = "i am a good boy";
string[] strarray = str.Split(' ');
for (int i = strarray.Length-1; i>=0; i--)
{
Console.WriteLine(strarray[i]);
}
Console.ReadLine();
}
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / praveen kumar
class Program
{
static void Main(string[] args)
{
string s = "I AM A BOY";
for (int i = 0; i < s.Length; i++)
{
Console.Write(s[s.Length-i-1]);
}
Console.ReadLine();
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / ranjith m
private void button1_Click(object sender, EventArgs e)
{
richTextBox1.Text = textBox1.Text;
richTextBox1.Text+=Environment.NewLine;
char[] wordarray = textBox1.Text.ToCharArray();
Array.Reverse(wordarray);
string s = new string(wordarray);
richTextBox1.Text += s;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jayakrishnan
var s1 = s.Split(' ').Reverse();
Console.WriteLine(string.Join(" " , s1.ToArray()));
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mitali mishra
dim str1 as string= "i am boy"
dim str_arr() as string= str1.split(" ")
dim str2 as string
for i as integer = str_arr.length-1; i<=0; i--
str2 = str2.concat(str_arr(i) & " ")
end for
str2 = str2.removeat(str2.length-1)
str1 = str2
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / munagapati
string str = "I am an employee of Mindtree";
//string str1;
StringBuilder sb = new StringBuilder();
for (int i = str.Length - 1; i >= 0; i--)
{
if (str[i].Equals(' '))
{
int j = i + 1;
sb.Append(str.Substring(j).Trim());
sb.Append(" ");
str = str.Remove(j);
//while (str[j])
//{
// sb.Append(str[j].ToString());
// j++;
//}
}
}
sb.Append(str);
Console.WriteLine(sb);
Console.ReadLine();
| Is This Answer Correct ? | 1 Yes | 2 No |
Automatically Hyperlink URLs and E-Mail Addresses in ASP.NET Pages with C#
Write a program to count 3Letter, 4Letter and 5Letter words from a file and print the number of 3Letter, 4Letter and 5Letter words. Delimiter is space, tab, hifen. Also we should not consider the line in the file after we encounter # in that line.
Create a class called Accounts which has data members like ACCOUNT no, Customer name, Account type, Transaction type (d/w), amount, balance D->Deposit W->Withdrawal If transaction type is deposit call the credit(int amount) and update balance in this method. If transaction type is withdraw call debit(int amt) and update balance. Pass the other information like Account no,name,Account Type through constructor. Call the show data method to display the values.
how to change password in .net with c # with ado.net and also SQL server 2008 change password
How to Create Files by Using the FileInfo Class?
program for string reverse(eg:- i am boy -> boy am i)
8 Answers Black Pepper, Infosys, Mind Tree,
Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik
program for straight line(y=mx+c)
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
IS Array list is generic or non generic
How to Link Different Data Sources Together?
Using C# Write a program that performs the following. The user inputs a number and then enters a series of numbers from 1 to that number. Your program should determine which number (or numbers) is missing or duplicated in the series, if any. For example, if the user entered 5 as the initial number and then entered the following sequences, the results should be as shown. Input Sequence Output ---------------------- --------------- 1 2 3 4 5 Nothing bad However, if 7 were the high number, the user would see the results on the right for the following number entries: Input Sequence Output ---------------------- --------------- 1 3 2 4 5 Missing 6 Missing 7 And if 10 were the high number and the user entered the numbers shown on the left, note the list of missing and duplicate numbers: Input Sequence Output ---------------------- --------------- 1 2 4 7 4 4 5 10 8 2 6 Duplicate 2 ( 2 times) Missing 3 Duplicate 4 ( 3 times ) Missing 9 The program should check the high number that the user inputs to ensure that it does not exceed the size of any array you might be using for storage.