Forum Discussion
Anonymous
4 years agoNot applicable
Add trim after Split
I am using this to Find/Replace a table let
Repl = Table.Buffer(ReplacementsTable),
Text = Text,
Result = Table.AddColumn(Text, "Changed Text Expected",
each Text.Combine(
List...
- 4 years ago
Use below in place of Text.Split([Text], "|")
Text.Split(Text.Replace(Text.Replace([Text]," |","|"),"| ","|") "|")
Vijay_A_Verma
4 years agoMost Valuable Professional
Use below in place of Text.Split([Text], "|")
Text.Split(Text.Replace(Text.Replace([Text]," |","|"),"| ","|") "|")
Anonymous
4 years agoNot applicable
Thank you. This worked great!