Is there a way to have multiline strings in VB.NET like python
a = """
multi
line
string
"""
or php
$a = <<<END
multi
line
string
END;
?
Of course something that is not
"multi" & _
"line
|
Is there a way to have multiline strings in VB.NET like python
or php
? Of course something that is not
|
||||
|
|
You can use XML Literals to achieve a similar effect:
Remember that if you have special characters, you should use a CDATA block:
|
|||||||||||||||||||||
|
|
VB.Net has no such feature and it will not be coming in Visual Studio 2010. The feature that jirwin is refering is called implicit line continuation. It has to do with removing the _ from a multi-line statement or expression. This does remove the need to terminate a multiline string with _ but there is still no mult-line string literal in VB. Example for multiline string Visual Studio 2008
Visual Studio 2010
|
|||
|
|
|
this method works the best so far:
it allows < > in the string |
|||
|
|
|
To me that is the most annoying thing about VB as a language. Seriously, i once wrote the string in a file and wrote code something along the lines of:
just so i could test the query directly on SQL server if i need to. My current method is to use a stored procedure on the SQL Server and just call that so i can pass in parameters to the query, etc |
||||
|
|
|
Well, since you seem to be up on your python, may I suggest that you copy your text into python, like:
then do a:
or
then at least you can copy that out and put it in your VB code. Bonus points if you bind a hotkey (fastest to get with:Autohotkey) to do this for for whatever is in your paste buffer. The same idea works good for a SQL formatter. |
||||
|
|
|
this was a really helpful article for me, but nobody mentioned how to concatenate in case you want to send some variables, which is what you need to do 99% of the time. ... <%= variable %> ... Here's how you do it:
|
|||
|
|
|
Multi-line string literals in vb.net using the XElement class.
|
|||
|
|
|
You could (should?) put the string in a resource-file (e.g. "My Project"/Resources) and then get it with
|
|||
|
|
|
Disclaimer: I love python. It's multi-line strings are only one reason. But I also do VB.Net, so here's my short-cut for more readable long strings.
|
|||
|
|
|
in Visual studio 2010 (VB NET)i try the following and works fine
|
|||
|
|
|
No, VB.NET does not yet have such a feature. It will be available in the next iteration of VB (visual basic 10) however (link) |
|||||||||||
|
|
if it's like C# (I don't have VB.Net installed) you can prefix a string with @
this is also useful for things like @"C:\Windows\System32\" - it essentially turns off escaping and turns on multiline. |
|||||
|