Replace The #1 In The Indexof Below So That It Searches For Any Number Character Instead?
May 1, 2011
I have 10 lines of array that are first name space last name space zip code. All the zip codes start with different numbers. Is there a way to replace the #1 in the indexof below so that it searches for any number character instead?
'open file
inFile = IO.File.OpenText("Names.txt")
'process the loop instruct until end of file
intSubscript = 0
[code].....
View 1 Replies
ADVERTISEMENT
Jan 24, 2010
I need to write a program that requests a high number and a low number from the user, then the program searches the array and finds all elements within the two numbers. The program is used to search for past presidents, so if I type 43 for low number and 44 for high number, the program will display:
George Walker Bush
Barack Hussein Obama
I think I have an idea of how to search up to a certain point, but not to stop at a certain point....Here is the code that I have for that particular sub procedure:
Quote:
Private Sub btnDisplayRqst_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplayRqst.Click
Dim sr As IO.StreamReader = IO.File.OpenText("PRESIDENTS.TXT")
[CODE]...
View 4 Replies
Jul 10, 2009
I am working on a sub that essentially needs to open a text file, and replace all instances of a certain character with a unicode character. I'm trying to do this by reading the original text file byte by byte, converting it to a character, and then either adding that character to a memory stream or writing the unicode character to the memory stream. Then I'm saving the memory stream to the original file.
[Code]...
View 3 Replies
Feb 17, 2011
I am writing a hangman type game and I am displaying the word to the user in a label as all *'s, but I cannot figure out how to have just one of the *'s changed in the label to the correct letter when the user inputs the correct letter into the text box and clicks the check letter button.Everything else in the program works perfectly, except for this part.[code]When I use the .Replace it changes all of the *'s to the correct selected letter.
View 2 Replies
Feb 16, 2012
the coding is to 'Get input string and put its character into List, and replace the character with other.'but having problem putting each character into List and also replacing it,[code]
View 2 Replies
Mar 6, 2010
How can I specify in my string that I want to replace occurrences of ALL characters and replace them with a specified character? Something like this:
'assuming currentWord is a string that contains any word
_myWord = CurrentWord.Replace("a-z,A-Z", "*")
View 3 Replies
Jul 7, 2011
I am using replace function to replace a character in the file
sw.WriteLine(Regex.Replace(strLine, "\", Chr(13)))
This code is working fine, but now I want to replace two times and I want to use the replace function twice. Something like this, but it is not working . Can anyone tell me how to use Replace function multiple times?
sw.WriteLine(Regex.Replace(strLine, "\", Chr(13)).Replace(strLine, Chr(13), ""))
View 2 Replies
May 1, 2011
How do I use the Indexof Method to search for an Index a number? The number will be different on each line of the file. Each array has a name and a different zip code. I want to tell it to search for the first number in the line. Everything before that index will be first name, last name, and then zip code.
[Code]...
View 1 Replies
Jan 4, 2012
I am creating a class that searches a binary file for a specific customer number. I am using a binary search that keeps on slicing the file in half until I find the customer number while is sorted. Once it finds it I am positioning it at the first instance of that Customer number as there can be multiple records with the same Cus Number.
Now here is my question. I now need to loop through this Customers records and do some data base searches. Since I want to make my class as generic as possible what should I pass back to the calling class? An Array with all their records. If I do this I have to loop twice, once in the class and once when it passes the array bac to the original calling class?
[Code]....
View 20 Replies
Jun 1, 2010
I'm trying to import an xml file into vb.net XmlDocument but am getting the error:'.', hexadecimal value 0x00, is an invalid character. Line 94, position 1.I'm wondering if there is a way to replace the hex character 0x00The following are lines 92,93,94 the file ends on line 94
92 | </request>
93 |</rpc> <!-- XML Finishes here -->
94 |
[code]....
View 2 Replies
Oct 14, 2010
In VB6 and Vb2010 you can replace all of one character in a string.Is there a way to replace multiple characters in the string.
View 2 Replies
Oct 16, 2009
i have a string "David John Roplay" i need to replace first occourance of the space " " into double space " "i have used String.Replace() but it is relplacing all the spaces.
View 3 Replies
Sep 16, 2010
I have a replacement problem in VB.NET: I need to replace the " character:
result = result.Replace(""", "")
How can I make this work? Is is even possible?
View 5 Replies
Dec 1, 2011
I've got a string like so
Jamie(123)
And I'm trying to just show Jamie without the brackets etc
All the names are different lengths so I was wondering if there was a simple way of replacing everything from the first bracket onwards?
Some others are displayed like this
Tom(Test(123))
Jack ((4u72))
I've got a simple replace of the bracket at the moment like this
mystring.Replace("(", "").Replace(")","")
View 4 Replies
Feb 13, 2012
So I have software to replace string with string, it's cool but I need code which would replace any given character (for example a) with all strings from textbox.
Here is example:
Character to change: a-> X
List of words which should not be touched: "car"
[Code]...
View 2 Replies
Jul 22, 2010
i have a txt file contains this text
20:12:22
i want to replace ":" with ""
so it will become
201222
how can ı do this?
View 2 Replies
Jun 21, 2010
I'm trying to find a character in a specific character space, on a particular line, for instance:
Line 2, Charspace (or column) 75.
After I find that I would be writing a read and replace to change that character.
Can someone point me in the direction on how to specify this location?
View 11 Replies
Sep 8, 2009
I need replace some character when add new record to database. I try this code but it isn't work.
bseo = Replace(bseo, """, "")
how I can resolve this?
View 4 Replies
Jan 23, 2012
I am trying to replace an & in the name of a service in an xml document.
The & is causing an error. Is there anyway i can write some piece of code which will escape "&" as " & a m p ;"?
View 1 Replies
Jan 21, 2011
What i am trying to do is take a character (which is going to be into a variable by user input) and search a string for this character, and save the positions of all character found and then change the same position of these characters in another string for the character that the user inputs. In other words, like a guess a word game. User tryes a guess, i search the string for that letter or number, if it's there replace it on the text box of the GUi, if not save it in another variable as a character that has been tried already, possibly an array.
View 1 Replies
Apr 1, 2009
Lets say I have a label with the text "_ _ _ _ _ ", some underscores. Now what if I want the program to locate the 3rd underscore and replace with something else. Is this possible? I was guessing by getting the character's position first and somehow there is a function that replaces characters by their position.
View 11 Replies
Mar 17, 2011
I have the problem that the DataGridView has obviously a shortcut key for SHIFT + SPACE which seems to select the row.What I would like to have is that pressing SHIFT + SPACE simply adds a space character to the current cursor position within the current cell (like for example in notepad)
View 1 Replies
Feb 15, 2012
My project is scanner for example.
[code]...
if listbox in same url then don't add listbox only one url stay
View 2 Replies
Feb 17, 2012
How can I replace character/word in text (loaded to richboxtext) but only for those which are not on the "block" list ?
Dim str As String = RichTextBox2.Text
RichTextBox3.Text = str.Replace("1"c, "A"c)
But I want add list of words which should be excluded. I thought that I can do something like :
Dim str As String = RichTextBox2.Text
If Regex.IsMatch(RichTextBox2.Text, "shows") Then
Else
RichTextBox3.Text = str.Replace("%"c, " "c)
End If
RichTextBox3.Text = str.Replace("1"c, "A"c)
Dim str2 As String = RichTextBox3.Text
RichTextBox3.Text = str2.Replace("2"c, "B"c)
But it's not working as it will just skip replace of % for whole text and I want just just exclude particular word from list from being replaced...
View 9 Replies
Mar 31, 2012
I'm trying to replace one character at a time in order to store its index, therefore if the replace is used all characters are changed and I cannot keep the index of all characters.
[code]...
View 9 Replies
Jun 7, 2009
Here is my code snippet:
Public Function convert(ByVal robert As String)
Try
robert = Replace(robert, "U", "A")
[code].....
View 1 Replies
Jan 21, 2010
I'm trying to replace all the carriage return characters in a string obtained from a multi line text box in a Windows Form with the string ", <BR>" so that when I use the string in some HTML it displays correctly.
Function Blah(ByVal strInput As String) As String
Dim rexCR As Object
rexCR = CreateObject("VBScript.RegExp")
[code]....
View 3 Replies
May 23, 2011
When i am pressing any key in the textbox it will return "A" Character.[code]...
View 2 Replies
Jun 7, 2009
earlier with my program question and found out that """" is how you make " become another variable in the function:Robert = Replace(Robert.ToLower, """", "A")So now I am also trying to work with other keys like the semi-colon. I put it in the function like this:Robert = Replace(Robert.ToLower, "char(59)", "B")I also tried to insert ; in place of char(59) with in front of it as an escape key, none of this worked. It still just gives me a ; when I type
View 2 Replies
Jul 20, 2009
I'm trying to replace all the carriage return characters in a string obtained from a multi line text box in a Windows Form with the string ", <BR>" so that when I use the string in some HTML it displays correctly.
Function Blah(ByVal strInput As String) As String
Dim rexCR As Object
rexCR = CreateObject("VBScript.RegExp")
[code]....
View 5 Replies