Share via

replace special character PU2 from a file in dataflow

Peruka, Sikander reddy 155 Reputation points
Mar 31, 2025, 2:28 PM

I have source file in dataflow and few rows in the file that have PU2 special character.

User's image

How do i replace this using the derived transformation in dataflow?

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,443 questions
{count} votes

Accepted answer
  1. Rakesh Govindula 965 Reputation points Microsoft External Staff
    Apr 1, 2025, 3:33 PM

    Hello @Peruka, Sikander reddy,

    You can try the below expression in the derived column transformation. You can give the expression to a new column or the same column as per your requirement. You need to ensure the source delimited text dataset encoding is UTF-8 and if you are copying it to any CSV or text file, the encoding should be the same.

    
    replace(Address,'\u0092','')
    
    

    enter image description here

    If the solution worked for you, please click on accept answer and YES button, this can be beneficial to other community members.

    User's image

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.