Search Result
Collapse
2 results in 0.0041 seconds.
Keywords
Members
Tags
-
Replace new line character with space
I have data in ms access which has new line characters.I want to use the REPLACE function to replace all new lines in that particular column so that the data appears in a single line.What update query should I use? -
Cannot detect newline character in string downloaded from the internet.
The string is coming from this url, http://www.elixirwd.com.au/test.php
The Username and Password for this url is,
Username:user
Password: password
Now simply downloading the data using the WebClient classes DownloadString( ) method the below code will not work.
Code:If FileContents.Contains(ControlChars.NewLine) Then MessageBox.Show("Has newline!") End