Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
shuhn1229
Helper III
Helper III

Extracting From A Field with Multiple Delimiters

Hi all,

 

I am relatively new to power query and am trying to extract all the text between [] delimiters in a field, if they exist. See example below:

 

InputOutput
[Apples] - 46 [Oranges] -1Apples, Oranges
[Oranges] -1Oranges
I need some fruit 

 

The problem I am running into is the delimeters between text in the ribbon is only returning one delimeter. I looked into this with this awesome thread, but I can't wrap my head around using "[" and "]" to begin and close the delimiters, respectively.

 

@ronrsnfld 

@AntrikshSharma 

Thanks

1 ACCEPTED SOLUTION
jbwtp
Memorable Member
Memorable Member

Hi @shuhn1229,

 

This may help:

Table.AddColumn(#"Changed Type", "Calculated", each Text.Combine(List.Transform(List.Select(Text.Split([Input], "["), each Text.Contains(_, "]")), each Text.BeforeDelimiter(_, "]")), ", "))

 

Cheers,

John

View solution in original post

4 REPLIES 4
jbwtp
Memorable Member
Memorable Member

Hi @shuhn1229,

 

This may help:

Table.AddColumn(#"Changed Type", "Calculated", each Text.Combine(List.Transform(List.Select(Text.Split([Input], "["), each Text.Contains(_, "]")), each Text.BeforeDelimiter(_, "]")), ", "))

 

Cheers,

John

Thanks John!!!!  Yours was the best answer of all!!!!!

Excellent!!!!!

looks like it's working great! you the man (or woman!)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors