program to reverse the order of words in a string.
Answers were Sorted based on User's Feedback
Answer / hrushikesh
Public Class Form1
Private Sub Button1_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
Button1.Click
Dim str As String
Dim words As String()
str = TextBox1.Text
words = Split(str)
Label1.Text = String.Empty
For i As Integer = words.Length - 1 To 0
Step -1
Label1.Text += words(i) + " "
Next
End Sub
| Is This Answer Correct ? | 4 Yes | 7 No |
Answer / snehu
import java.io.*;
import java.lang.*;
public class StringReverse
{
public static void main(String[] args)throws Exception
{
String words = "hi frends........ welcome to my
world";
String reverse = new StringBuffer(words).reverse
().toString();
System.out.println("Normal : " + words);
System.out.println("Reverse: " + reverse);
}
}
| Is This Answer Correct ? | 3 Yes | 12 No |
How to Create Files by Using the FileInfo Class?
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
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
program for addition of fraction(M/N + P/Q = Y/Z)
How to add a value from textBox over an existing certain column in SQL Server
program for string reverse(eg:- i am boy -> boy am i)
8 Answers Black Pepper, Infosys, Mind Tree,
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
How to pass multiple rows from one gridview to another gridview after clicking the checkbox.
How to find No of classes,Packages,No of Methods per Classes and Depth of Inheritance for selecting source code in windows form application using c# .net? (Source code is input Program. It may be Java or .net) Please help me..) Thanks..)
Write a program which has a function and that function should take 2 or 3 or any number of strings and it should return the largest common prefix of all those strings. If there is no common prefix it should return an empty string. for eg:- INPUT OUTPUT glo {glory,glorious,glod} gl {glad,glow} {calendar,phone} empty string
program to reverse the order of digits in a given number of any length.
how do i copy textbox contents of 1 form to another form