Home All Groups Group Topic Archive Search About

Is This Method Of Creating a String Possible?

Author
26 Apr 2010 8:55 PM
Space Invader
Hi all.  I've looked on Google for this but it's one of those that I
just don't know what keywords to put in the search terms!!

So, in a nutshell...

I know when you do this with a=10 and b=5

Console.Writeline ("{0} is bigger than {1}", a, b)

You will get this - "10 is bigger than 5".

BUT can I define a new string like that?  I'd love for it to work like
this (but I know it doesn't)...

Dim myString as String = "{0} is bigger than {1}", a, b

Is there any way of creating a string using these kind of placeholder
techniques?

Thanks in advance.

Author
26 Apr 2010 9:03 PM
Space Invader
It's OK - I managed to suss it!

I did it like this...

        Dim myString As String = String.Format("{0} is bigger than
{1}.", 10, 5)

Happy Bunny!  I practically got my wish!

Cheers.
Author
26 Apr 2010 9:32 PM
Armin Zingler
Am 26.04.2010 23:03, schrieb Space Invader:
> It's OK - I managed to suss it!
>
> I did it like this...
>
>         Dim myString As String = String.Format("{0} is bigger than
> {1}.", 10, 5)
>
> Happy Bunny!  I practically got my wish!

Congrats.
Starting point for your future researches: (mainly the TOC)
http://msdn.microsoft.com/en-us/library/txafckwd%28VS.90%29.aspx


--
Armin
Author
22 May 2010 1:37 PM
Space Invader
Thanks, Armin.

That just proves my point - I didn't know what search term to use.  I
would never have guessed "Composite Formatting", but now I know!
Thanks again.

SpaceInvader

On 26 Apr, 22:32, Armin Zingler <az.nos***@freenet.de> wrote:
Show quoteHide quote
> Am 26.04.2010 23:03, schrieb Space Invader:
>
> > It's OK - I managed to suss it!
>
> > I did it like this...
>
> >         Dim myString As String = String.Format("{0} is bigger than
> > {1}.", 10, 5)
>
> > Happy Bunny!  I practically got my wish!
>
> Congrats.
> Starting point for your future researches: (mainly the TOC)http://msdn.microsoft.com/en-us/library/txafckwd%28VS.90%29.aspx
>
> --
> Armin
Author
27 Apr 2010 6:48 PM
Saga
Congrats!! Really cool! Saga


Show quoteHide quote
"Space Invader" <si.vortexNON@SPAMMEgooglemail.com> wrote in message
news:ef92d49d-320a-4276-a771-413709937530@j27g2000vbp.googlegroups.com...
> It's OK - I managed to suss it!
>
> I did it like this...
>
>        Dim myString As String = String.Format("{0} is bigger than
> {1}.", 10, 5)
>
> Happy Bunny!  I practically got my wish!
>
> Cheers.