Bug? CRLF - Maybe a bug, maybe not - moster67 (first post)    Oct 27, 2018   (1 reaction) Maybe this?
Probably the keyword CRLF is implemented as a LineFeed which is probably fine for Linux-systems such as a Android i.e.
CRLF = "\n"
In B4J, perhaps the keyword CRLF should use, under the hood, the System.lineSeparator() method which automatically detects the operating system.
What happ B4A Question CSS to B4X Path - GJREDITOR (first post)    Jul 31, 2023 Append(CRLF).Append(" pthClip.LineTo(") End If Next codeBuilder.Append(CRLF).Append(" cvsClip.ClipPath(pthClip)") Return codeBuilder.ToString End Sub B4A Question CRLF or smart string from database - shashkiranr    Jul 03, 2017 Hi,
I have a string value with a new line CRLF to indicate a new line. Just by assigning the value to a label works fine but when you are retrieving the same from a database, the CRLF are not parsed as new line rather than a string. How can I format it to be a new line function.
Best,
SK B4A Question barcode scanner into EditText - CRLF not detected - drgottjr (first post)    Jul 01, 2024 just to clarify, CRLF means different things to different people. for my barcode scanner, CRLF is chr(13) + chr(10). for B4X, CRLF is chr(10).
if i want my barcode scanner to append chr(10) only, i can tell it to do that. i can also tell it not to append any characters. the so-called ENTER key i B4J Question "CRLF" in WriteLine - Erel (first post)    Aug 05, 2018   (1 reaction) Don't use TextWriter. Create the string, preferably with StringBuilder and write it with File.WriteString. B4A Question CRLF in BBCodeView1.Text - Mahares (first post)    Aug 17, 2022 Is this what you want to accomplish:
BBCodeView1.Text = $"This is a first line ${CRLF} and this is a second line"$ B4A Question [Solved] Break line with strange character in SQLite - William Lancee (first post)    Mar 04, 2022   (2 reactions) In B4X the end of line marker constant is CRLF which is actually only one character Line Feed (ASCII 10) The blob has both CR (ASCII 13) and LF (ASCII 10). The Log adapts to either but the label does not. Just remove it with .replace or try a different charset in BytesToString as @drgottjr said a B4J Question CRLF Strangeness - Erel (first post)    Sep 24, 2015   (4 reactions) CRLF = Chr(10). This is true for B4J, B4A and B4i.
I agree that it can be confusing and it should have been named different (EndOfLine maybe). However CRLF value (chr 10) is the "correct" end of line character on Android iOS and Java apps.
Luca you can use CharAt instead. B4A Question reading comma separated values text file - Branko Milosevic (first post)    May 03, 2017   (1 reaction) Excell puts CRLF line end which would fail in loadCSV. Unix uses LF and Mac CR. Windows MS-DOS convention is CRLF.
Non of them work with loadCSV which needs LF as for what I tested so far. B4A Question How to return Null from Sub that returns String? - emexes (first post)    Dec 18, 2023   (1 reaction) Given that .ReadLine doesn't return the line terminators, CRLF might have been good choice to indicate EOF. Albeit mildly unintuitive. But same could be said of Null. At least CRLF is a valid String. ? Page: 1   2   3   4   5   6   7   Powered by ColBERT |