Forum Discussion

cannellonigreyh's avatar
cannellonigreyh
Frequent Visitor
3 years ago
Solved

How to remove multiple email addresses

Hello.    A field (emailBody) contains the body/text of certain emails we have received.  In Power Query, I need to remove/obscure email addresses for data protection reasons.  One entry can cont...
  • AntrikshSharma's avatar
    AntrikshSharma
    3 years ago

    cannellonigreyh You can use this:

    AddedCustom = 
        Table.AddColumn ( 
            PreviousStep, 
            "New Text", 
            each 
            Text.Combine ( 
                List.Select ( 
                    Text.Split ( [Text], " " ), 
                    each not Text.Contains ( _, "@" ) 
                ), 
                " " 
            ), 
            type text 
        )