Carriage Returns in Text Files

Carriage Returns in Text Files

Question:
I have written a function which strips out all carriage returns from a memo field passed toit, replacing them with the characters “
“. The returned piece of text is thenplaced/merged into a text file. However, when I go to look at my text file, it appears thatseveral carriage returns or paragraph marks have been inserted at random pointsthroughout the file.

What is causing this? How can I prevent paragraph markers being inserted into the text?

Answer:
There are a couple of possibilities that spring to my mind. First of all, what we usuallythink of as carriage returns in text files are actually a combination of a carriage returncharacter ( CHR(13) ) followed by a line feed character ( CHR(10) ). This combination isusually referred to as CRLF (Carriage Return Line Feed).

Some text editors (and editboxes within VFP too) use carriage returns only to indicate anend of a line. If your code only translates CRLF combinations to
then you willbe missing any lone carriage return characters. Here is a code sample that handles bothCRLF and lone CRs in a memofield:

lcTranslatedText =STRTRAN(MyTable.mMyMemoField,CHR(13)+CHR(10),"
") lcTranslatedText = STRTRAN(lcTranslatedText,CHR(13),"
")

The second possibility I can think of relates to how you are merging the informationtogether. You may want to check to see if these errant carriage returns occur right wheretwo pieces of information get merged.

Your message does not specify what approach you are using to merge the data. If you areusing TEXTMERGE to merge the information together, if you use “” to add informationto the merge, this inserts a carriage return before what you are adding to the merge. Tosolve this use “\” instead, which does not insert a carriage return. A similar situationoccurs if you are using SET ALTERNATE to redirect whatever is sent to the screen to afile. If you use “?” to add information to the merge, this inserts a carriage return beforewhat you are adding to the merge. To solve this use “??” instead, which does not insert acarriage return.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes