We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Removing Line Feed Character

gesh2112
7 - Meteor

Hello,

 

I am trying to figure out how to remove the Line Feed character and replace it with /^CR^/.  I have replaced all the Carriage feed characters with it.  But nothing I have tried actually removed the line feed character.  

 

Below is a sample of a .csv file that was processed through my workflow.  I open up the .csv in NotePad++ and showed hidden characters.  

 

Screenshot 2024-02-14 145245.png

 

I used a Replace to remove the Carriage Return.  I have also tried Regex_Replace.  

 

Does anyone know what I need to put in my workflow to remove it?

 

 

3 REPLIES 3
Raj
16 - Nebula

Add some sample data and expected output

ChrisTX
16 - Nebula
16 - Nebula

In a Formula tool, does this work for you?

 

Replace([Field1], CharFromInt(10), "/^CR^/")

 

gesh2112
7 - Meteor

Yes that works.

 

THANK YOU!!

Labels
Top Solution Authors