Locating A String In A String?
Feb 2, 2009
Well I've been looking around on Google and experimenting with code but nothing seems to work. The only things I can find are hundreds and hundreds of lines long - there surely must be an easier way?
View 4 Replies
ADVERTISEMENT
Sep 22, 2009
I am trying to extract a filename from a route.the example string is: "c:/windows/example.cpp"..I need to be able to somehow extract "example.cpp" where "example.cpp" could be any word with any extension. The rest of the route is unecesary...
View 1 Replies
Jun 9, 2011
I am trying to make a program which outputs an Invoice Number, which consists of the first 3 letters of a person's first name and the last 3 digits of their zip code. The user enter their first and last name, then enters their city, state, and zip such as:
Name: Billy Jones
City, State, Zip: Chicago, Illinois 42349
Therefore, the invoice would look like:
Invoice: Bil349
I can get the first 3 letters of the first name fine using the substring function, but I have been stumped on how to get past all of the text to get the last 3 digits of the zip code entered.
View 2 Replies
Mar 8, 2012
I get this error when I try to connect to my database. I used the same string provided in the database explorer "Connection String"
I do not have a password on the database.
This is a local database if that makes a difference
View 9 Replies
Jan 18, 2011
Can I do anything more or less with IDictionary? How do these two collections differ?
View 5 Replies
Mar 11, 2010
my code is :
[Code]...
The error is Value of type '1-dimensional array of string' cannot be converted to 'String'.
View 2 Replies
Jul 29, 2011
I want the Function to accept List(Of String), Array & String and similarly return List(Of String), Array & String respectively. The Function simply adds a string (month) to the input collection. I just want to use it for string, array and list with needing to think of conversions.
[Code]...
View 2 Replies
Aug 12, 2011
Basically I have a webresponse stream:dim lol as string = readstream.tostring there is a lot of information within the string but only one link starting with http: located near the end of the string - however there is no constant character point where I can start... (i.e. 38)
I want to extract the link from the string i.e. dog cat plane car [URL]..that is approximately how it looks above - words and url substituted I want to just extract [URL]..I had an idea of parsing the string from http: to the end Then after that splitting the string up again to remove the }], however it does not return anything
View 3 Replies
Jun 22, 2010
I got an app, which receives data via a R232 port, convert it to a string and on the other side I got a database, where the strings are saved. How can I find a way to compare the string with all strings in one database column and get back the another stringform the same row in this database. I never programmed a database
View 1 Replies
Aug 18, 2011
I have buttons generated through code (dynamically). I have to associate an event (the same) to them. I use AddHandler button.click, AddressOf mysub.The issue is that mysub gets a string (mysub(string)), but AddressOf doesn't accept a parameter inside the routine. How can I do this? Using also an alternative to AddressOf.
EDIT:
Public Class Form1
...
Private Sub mysub(ByVal sender As Object, ByVal e As System.EventArgs, ByVal str As String)[code]......
View 2 Replies
Dec 5, 2011
These is the content of my txt file which is saved in D drive in my pc abc,1,2,3..I tried the flowing but it didn't work:[code]I am getting error on this line.. data = line.Split(","c)...it says this line isn't in use anymore or something and that I rather use LineInput but thats asks for filenumber and i don't know what that is. I am sorry but I am a complete beginner. what else can I try? [code]ok that error is gone now but now if I want to add these values to a list box..how can i do that?
View 1 Replies
Jan 7, 2010
What is the best way to pass the four (4) parameters after the applicationName to the application to be launched?
Process.Start ("C:\MyApp.exe",
"CommChannel1",
"DeviceName",
"Language",
"UserName")
View 7 Replies
Jun 23, 2009
I have the following web method:
<WebMethod()> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json, UseHttpGet:=True, XmlSerializeString:=True)> _
[Code].....
I wanted to use HttpGet here so that the result can be cached.
I tried every variation of calling this, but no luck. Is this possible with GET?
View 2 Replies
Apr 5, 2011
I have a field that I display via: String.Format({0:c},amount) This produces the string "$28.28" However, when I try to convert back to a decimal amount, I get an incorrect format exception: amount = Decimal.Parse(amount.Text, NumberStyles.Currency) I also tried it with NumberStyles.AllowCurrencySymbol with the same results. I verified that the value in amount.Text is "$28.28". Am I missing something? Shouldn't these two operations use the same currency symbol and formats?
View 2 Replies
Sep 24, 2009
I Ported this code from a code project article in c# called Nscript
heres the code
Base App
Imports System
Imports System.IO
Imports System.Resources
[code]....
Okay Now I only get two errors (I dont know how to solve them)
Error3Class 'BaseApp' must implement 'Sub OnCompilerError(errors() As CompilerError)' for interface 'IScriptManagerCallback'.
And
Error4Class 'ScriptManager' must implement 'Sub CompileAndExecuteFile(file As String, args() As String, callback As IScriptManagerCallback)' for interface 'IScriptManager'.
But What I would also Like to know (as well as how to fix the errors), is would the code work?
View 1 Replies
Jun 23, 2011
I need a regular expression that can validate that a string is an alphanumeric comma delimited string.
Examples:
123, 4A67, GGG, 767 would be valid.
12333, 78787&*, GH778 would be invalid
fghkjhfdg8797< would be invalid
This is what I have so far, but isn't quite right: ^(?=.*[a-zA-Z0-9][,]).*$
View 3 Replies
Feb 28, 2010
Problem: Your task is to take input from the user in string and give the following options to the user in a menu.
1- Find a String
2- Create sub-string
3- Erase a portion of a sting
4- Replace a word in the string
5- Count number of words and characters in the string without spaces.
6- Capitalize first character of each new sentence and convert the rest
of the characters to lower case.
7- Sort all the words in alphabetical order. (Use Bubble sort algorithm to perform sorting).
To perform all the above mentioned tasks you can only use pointers. Create a function to perform every task.
View 1 Replies
Mar 2, 2011
So strings are reference types right? My understanding is a reference to the string in the heap is passed even when you pass the string ByVal to a method.
String myTestValue = "NotModified";
TestMethod(myTestValue);
System.Diagnostics.Debug.Write(myTestValue); /* myTestValue = "NotModified" WTF? *[code].....
And what is going on under the hood? I would have bet my life that the value would have changed....
View 5 Replies
Aug 27, 2011
Im working on a program and I get this "Value of type '1-dimensional array of String' cannot be converted to 'String'." heres the code that gets this error:
[Code]...
View 3 Replies
Jan 17, 2010
I don't understand why the line final.join etc pops up with these errors!! Value of type 'String' cannot be converted to '1-dimensional array of String' And Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated This is my code.
[Code]...
View 6 Replies
Feb 20, 2010
when i transfer the bytes sent by the client program to a string the string length is affected.when i put the bytes sent by the client program to a message box. it returns the corrrect text. but when i check the length it will return 8192 or higher. but the actual size is just 5.
My Code
Dim tcpClient As TcpClient = tcpListener.AcceptTcpClient()
RichTextBox1.Text = RichTextBox1.Text & vbNewLine & "Connection accepted."
' Get the stream[code]....
View 6 Replies
Feb 19, 2009
The following is ment to generate the path to a text file and stream the data found there into an array.
Dim y1 As String
Dim y2 As String
Dim y3 As String
[code].....
View 5 Replies
Apr 8, 2011
I'm trying to code a program but this error repeatedly shows up and I can't for the life of me figure it out EValue of type 'String' cannot be converted to 'System.Windows.Forms.TextBox'. It appears in relation to this code
[Code]...
View 8 Replies
Jan 15, 2010
I need to do this to every line in a file and save the # five Element in an array. I keep getting (error code 1 Value of type '1-dimensional array of String' cannot be converted to 'String'.)
NOTE: if I change ( Dim Lineoftext(1) to Dim Lineoftextt works) (It does't seem to work with arrays)
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[CODE]....
View 7 Replies
Apr 16, 2012
What I need is to be able to put in a SortedList a combination of two fields that are non-unique, but the pair is (like database composite keys).More precisly, i have my list, and i want to be able to do this with it
Dim myList = New Generic.SortedList(Of String, String)
myList.add("aaa","aaa")
myList.add("aaa","bbb")
[code].....
View 1 Replies
Jun 7, 2009
I'd like to convert a string which contains a decimal number into string that contains the binary value, the octal and the hexadecimal value of that decimal number.Afterwards I also like to convert a string containing a binary, octal and hexd. number into a decimal string.Basically I'm looking for the functions:
dec2bin
dec2oct
dec2hex
bin2dec
oct2dec
hex2dec
I'd not prefer to rewrite a function, I'm sure the framework must have these functions already.
View 5 Replies
Jul 13, 2010
I am trying to the copy the value from string to char array using String.CopyTo() method.
Here's my code
Dim strString As String = "Hello World!"
Dim strCopy(12) As Char
strString.CopyTo(0, strCopy, 0, 12)
[code]....
Edit : I get the this error at runtime.ArgumentOutOfRangeException Index and count must refer to a location within the string. Parameter name: sourceIndex
View 2 Replies
Dec 8, 2009
Try
Dim authTicket As FormsAuthenticationTicket = _
FormsAuthentication.Decrypt(authCookie.Value)
[Code].....
Error1Value of type 'String' cannot be converted to '1-dimensional array of String'.C:xxx
View 4 Replies
Aug 5, 2011
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Roles.AddUsersToRole(DropDownList1.SelectedValue, DropDownList2.SelectedValue) Label1.Text = DropDownList1.SelectedValue + "Was Add to the" + DropDownList2.SelectedValue + "Role"
View 2 Replies
Mar 28, 2012
I've got an issue with a program I am writing. The specific issue is replacing characters in a parent string by finding, and matching, specific characters within it that are parsed from an external xml file. It's for a chat-like client.Here's the 2 classes I am using to pull the emote strings, titles, and id from external XML:
Imports System.Text.RegularExpressions
Imports System.Xml.Serialization
Public Class emote
[code].....
View 1 Replies