Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Unable to trim special character

Jake5
8 - Asteroid

Hello - I have a .txt input where certain records lead with a special character that resembles an upward pointing arrow as shown in the attached screen capture.  You'll notice my attempt at trimming out this character but to no avail.  Any suggestions on how to remediate? Thanks!

 

Jake5_0-1652902918444.png

 

  

4 REPLIES 4
DataNath
17 - Castor

Does sticking it in a replace formula like this do the trick? Have just used another special character to test.

 

DataNath_0-1652903196296.png

 

binuacs
20 - Arcturus

@Jake5 another option to exclude non-ascii characters with the help of the Regex_replace function

 

REGEX_Replace([Field1], "[^ -~]", '$1')

 

binuacs_0-1652903653816.png

 

dYoast
11 - Bolide

Assuming the arrow is only one character, you might be able to use this formula:  Right([Firm Name], Length([Firm Name])-1)

dYoast_0-1652904316823.png

 

Jake5
8 - Asteroid

This solution worked.  Thanks!

Labels