Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple beginner exercise:

There's an input box where you put in your name seperated by spaces, then get the first letter from the first and last name and out put it to a label

I.e (Joe Bob) = JB


I know this could be done with an array, but the exercise is more to using string functions like substring, IndexOf, Remove, Replace etc...

share|improve this question

4 Answers

up vote 0 down vote accepted

You can try using the SubString and Split Methods.

 Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    Dim myInitials As String
    Dim myName As String = "Joe Bob"
    myInitials = myName.Substring(0, 1) & myName.Split(" ")(1).Substring(0, 1)
End Sub
share|improve this answer
This is what I was looking for. Thanks. Just a question so I may better understand: Could you explain what substring(0,1) and then ...(1).Substring(0,1) are doing exactly? – Ds.109 Nov 2 '12 at 12:35
@DavidSalib As some of the answers have pointed out, strings are arrays of chars, what substring(0,1) does is get the first character from position 0 of the first string. Split(" ")(1) then splits the string into 2 strings and Substring(0,1) gets the first character from position zero of the second string. Be aware that there is no checking in my example to make sure that the input is in the proper format. – Mark Hall Nov 2 '12 at 13:04
Ok thanks a lot! Yes I added stuff like Trim() and replacing periods, and limiting it to only one space. – Ds.109 Nov 5 '12 at 4:14

There is the handy string method Split which splits a string at whitespaces by default, if you don't specify another delimiter.

Dim words As String() = TextBox1.Text.Split()
Dim initials As String = ""
For Each word As String In words
    initials &= word(0)
Next

Note: Strings can be indexed as if they were Char arrays. word(0) is the first character of word.

initials &= word(0)

is shorthand for

initials = initials & word(0)
share|improve this answer

You can try this:

 dim str as String=TextBox1.Text
 Label1.Text=str.Remove(1, str.LastIndexOf(" ")).Remove(2)

If you want, you can do it in one line:

 Label1.Text = TextBox1.Text.Remove(1, TextBox1.Text.LastIndexOf(" ")).Remove(2)
share|improve this answer

Could try something like this too!

Dim str As String = textBox1.Text
Dim initials As String = New String(str.Split(" "c).Select(Function(f) f(0)).ToArray)
share|improve this answer
   
I like your idea, because of LINQ , but at the end you use ToArray , something that DavidSalib tries to avoid. – Nianios Nov 1 '12 at 14:54
it's just due to the string constructor requiring a char array – Ric Nov 1 '12 at 16:24
Yes I know. I am not trying to accuse you, and I really like your answer. – Nianios Nov 2 '12 at 10:43
That's ok, people had provided good answers before me, so I thought I'd post this, even though as you rightly mentioned the OP wanted to avoid using certain features :) – Ric Nov 2 '12 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.