473,785 Members | 2,488 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.NET reversing a string without using the string Reversal functions

1 New Member
Hi,

Brand new to VB.NET and I'm having a problem figuring out this program. I'll try and be descritive as possible.


I have to create a Windows application that contains a single top-level form with two textboxes on it, on positioned above the other. As each character is entered into the upper textbox, the string that has been entered into the upper textbox must appear in the lower textbox, but in reverse. If the input field contains any digits (0 through 9), each such digit must be translated into its corresponding English name reading in correct left-to-right order, followed by a space character. For example, if the string that has been entered into the upper textbox is “abc123def” the string displayed in the lower textbox must be “fedThree Two One cba” I can't use of any string reversal functions that are included so I'm guessing I have to do a recursive reversal?


I'm using WinXP and Visual Studio 2005
Oct 23 '07 #1
3 6101
Shashi Sadasivan
1,435 Recognized Expert Top Contributor
try this.

Expand|Select|Wrap|Line Numbers
  1. Array.Reverse(textBox1.text.ToCharArray())
if you then want to convert 1 to One and 2 to Two, etc....
use the replace method of the string.

cheers
Oct 23 '07 #2
classic244
1 New Member
Hey this should do...

One way
:

Public Function ReverseString(B yRef strToReverse As String) As String
Dim result As String = ""
For i As Integer = 0 To strToReverse.Le ngth - 1
result += strToReverse(st rToReverse.Leng th - 1 - i)
Next
Return result
End Function

Another Way :

Public Function ReverseString(B yRef strToReverse As String) As String
Dim swap as Char = ""
For i As Integer = 0 To strToReverse.Le ngth/2
swap = strToReverse(i)
strToReverse(i) = strToReverse(st rToReverse.Leng th - 1 - i)
strToReverse(st rToReverse.Leng th - 1 - i) = swap
Next
End Function
Mar 11 '08 #3
jamesd0142
469 Contributor
Reverse a textbox.text

Expand|Select|Wrap|Line Numbers
  1.  TextBox2.Clear()
  2.         Dim j As Integer = Len(TextBox1.Text)
  3.         For i As Integer = 0 To Len(TextBox1.Text) - 1
  4.             TextBox2.Text += Mid(TextBox1.Text, j - i, 1)
  5.         Next
  6.  
This should be what you need though...
Expand|Select|Wrap|Line Numbers
  1.    Dim a As String
  2.         TextBox2.Clear()
  3.         Dim j As Integer = Len(TextBox1.Text)
  4.         For i As Integer = 0 To Len(TextBox1.Text) - 1
  5.             a = Mid(TextBox1.Text, j - i, 1)
  6.             If a = "1" Then
  7.                 TextBox2.Text += "ONE "
  8.             ElseIf a = "2" Then
  9.                 TextBox2.Text += "TWO "
  10.                 'elsif...(add all umbers like this...
  11.             Else
  12.                 TextBox2.Text += Mid(TextBox1.Text, j - i, 1)
  13.             End If
  14.         Next
  15.  
Mar 11 '08 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

74
5090
by: Michael | last post by:
As if we needed another string reversal question. I have a problem with the following code, that I believe should work. int StringReverse(char* psz) { char *p = psz; char *q = psz + strlen(psz) - 1; while (p < q) {
24
921
by: ineedyourluvin1 | last post by:
Why does this reverse the string ? Sorry about using namespace std ; It made it easier to read :-) Thanks #include<iostream> using namespace std ; void rev_str( char* str ) {
45
5229
by: Ajay | last post by:
Hi all,can you please tell the most efficient method to reverse a byte.Function should return a byte that is reversed.
8
4763
by: arnuld | last post by:
i have created a solutions myself. it compiles without any trouble and runs but it prints some strange characters. i am not able to find where is the trouble. --------------------------------- PROGRAMME -------------------------------- /* K&R2 section 1.9 exercise 1.19
3
6656
by: Babikie | last post by:
Write a program that performs a reverse recursion with following functions. void swop (char,int,int); void reverse (char); void rev(char,int, int); User should enter a string and all character should be reversed. Note! The rev function should be used as the recursive function, accepting the string, plus the first and last position of string. The reverse() passes the first and the last position of the string to the rev() which performs the...
2
12069
by: Kelly B | last post by:
I tried to write a code which would reverse the order of words in a given string. I.e if Input String=The C Programming Language Output String=Language Programming C The Here is the code ..but it seems a bit "bloated" as i need an extra array of same size of the original string
16
2087
by: Scott | last post by:
Yeah I know strings == immutable, but question 1 in section 7.14 of "How to think like a computer Scientist" has me trying to reverse one. I've come up with two things, one works almost like it should except that every traversal thru the string I've gotten it to repeat the "list" again. This is what it looks like: for char in x: mylist.append(char)
16
3591
by: python101 | last post by:
I intend use string and reverse function to build a simple application in python for DNA (presented by A,G,G, and T) mutation when one of its substring is reversed during the replication process. The reversal happens what are termed inverted pairs. For instance, if the pattern TGAA is later followed byinverted pattern AAGT, the slice of DNA delimited by those patterns could be inverted and reattached. Something's like TGAACATTAAGT will be...
144
5003
by: dominantubergeek | last post by:
Hello, I'm a highly experienced expert C programmer and I've written this code to reverse a string in place. I think you could all learn something from it! int reverse(char* reverseme){ int retval=-1; if(retval!=NULL){ int len=strlen(retval){ if(len>0){ int half=len>>1;
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10091
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6739
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5381
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.