cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
callalilycek
Regular Visitor

How to trim fields for variables from emailbody

Hello,

 

I am trying to create variables to pull information from an event. The main issues I am having is how to trim the time zone field to only show Central Time, Eastern Time, etc rather than the whole answer after the "Time Zone:" field. I am not sure in my expression how to add the trim action.  (see screenshots below). The information looks somewhat like this:

***

Customer Info
--------------------
Name: CK
Email: anemail@gmail.com
Phone Number: 5555555555
Time Zone: (UTC-06:00) Central Time (US & Canada)

Booking Info
--------------------
Service name: Foundational Implementation Onboarding Introduction

Custom Fields
----------------------
Question 1- What is your Firm ID number?
Answer- 664139
Question 2- Any important notes for the Onboarding Representative?
Answer-

 

So far I have the expressions of:

 

Time Zone VAR named TimeZone2:

last(split(variables('EmailBody'), '<br>
Time Zone: '))

and then a second VAR named TimeZone with: 

first(split(variables('TimeZone2'), '<br'))

 

Below is a screenshot of what pulls with the timezone VAR, highlighted is what I want to eliminate. Its not always the same output since whats in first parentheses can differ for numbers based on time zone altho US & Canada is the most popular for second set of parentheses.

 

callalilycek_1-1683120540416.png

 

2 ACCEPTED SOLUTIONS

Accepted Solutions

Hi @callalilycek ,

This formula you wrote is wrong.

vqiaqimsft_0-1683855671025.png

This is the correct one:

trim(first(split(last(split(last(split(variables('EmailBody'),'Time Zone: ')),') ')),' (')))

 

The last(split(variables('EmailBody'),'Time Zone: '))part meams the TimeZone variable in your scenario.

 

What's more, you could find out the expression you set for following variable, and add a Compose and write the following formula to get the info you need:

 

 

first(split(last(split(variables('TimeZone'),')')),'('))​

 

 

vqiaqimsft_0-1683857016710.png

Using trim() or not depends on you.

Best Regards,
Qi

View solution in original post

callalilycek
Regular Visitor

That one worked, thanks!

View solution in original post

11 REPLIES 11
v-qiaqi-msft
Community Support
Community Support

Hi @callalilycek,

Do you want to only capture the Central Time, Eastern Time, etc?

 

If the ")" and "(" are fixed in your email body, I think you could try use them to split the variable:

first(split(last(split(first(split(variables('TimeZone2'), '<br')),')')),'('))

 

Best Regards,
Qi

Yea, only the Central time, Eastern time, etc.. peice. And parentheses are always there, I was struggling to place them in the code correctly. I will test this one!

That did not work, it took out everything. I also tried this: first(split(last(split(first(split(variables('TimeZone2'), '<br')),'(')),')')) but that only gave me the US & Canada piece cutting out the rest of the information.

Hi @callalilycek,

Oaky, you want to keep the content of the Booking Info as well, right?

 

If so, you just need to concat the Central time and the left Booking Info.

This part is for the Central time:

first(split(last(split(first(split(variables('TimeZone2'), '<br')),')')),'('))

And this part is for the following Booking Info:

last(split(last(split(first(split(variables('TimeZone2'), '<br')),')')),')'))

You could use the concat() to concatenate them:

concat(first(split(last(split(first(split(variables('TimeZone2'), '<br')),')')),'('))​,'<br>',last(split(last(split(first(split(variables('TimeZone2'), '<br')),')')),')')))

 

 

Best Regards,
Qi
callalilycek
Regular Visitor

Those do not work as it says the expressions are invalid.

 

I think theres a misunderstanding of what im trying to do and probably my fault for badly explaining. I first need to have the flow pull the time zone information from the customer info. Then I want to trim it so it only pulls Central time, Eastern time, etc... Here is the current variable order and here are what the expressions are:

 

Time Zone VAR named TimeZone2:

last(split(variables('EmailBody'), '<br>
Time Zone: '))
 

and then a second VAR named TimeZone with: 

first(split(variables('TimeZone2'), '<br'))

 

callalilycek_0-1683306655234.png

 

This pulls the time zone field and the rest of the email body, and then the second variable cuts it to only be the part that says for example: (UTC-06:00) Central Time (US & Canada), and I want only the Central time, Eastern time, etc part to be pulled. Not sure if a trim action would do this, I just haven't figured out the right expression.

Hi @callalilycek,

Sometimes a screenshot is better to describe.

 

Currently, you sait that my solution in the first reply only gave you the US & Canada piece cutting out the rest of the information, so I confirm with you that if you want to keep the content of the Booking Info as well.

 

Please tell me the answer based on the above question.

 

Further, do you want to delete the yellow part and keep the left content?

vqiaqimsft_0-1683513943719.png

 

If so, I will show you how I achieve this in my scenario, note that I don't have <br> tag in my compose, I refer to it as plain.

vqiaqimsft_1-1683515889730.png

last(split(outputs('Compose'), 'Time Zone: '))
first(split(last(split(outputs('Compose_2'),') ')),' ('))
last(split(last(split(outputs('Compose_2'),') ')),')'))
concat(outputs('Central_Time'),outputs('Info'))

vqiaqimsft_0-1683515793901.png

Best Regards,
Qi

Hello Qi,

 

Thanks for the follow up. The screenshots help and I think that is more than I need. I only want to pull the "Central time" or "Eastern time" etc. in total. The highlighted parts I do not want and I do not need the booking info after either for this variable. I just want the variable to pull the info from the time zone field and only the piece not highlighted in my screenshot. I think maybe I just need a trim action on one or both variables for my time zone field, just haven't got it to work correctly to eliminate the items in the parentheses. This is what I was attempting, and it allowed the expression, but it failed. My guess is I just don’t have the trim action correct with the parentheses.

 

callalilycek_1-1683567728902.png

 

TimeZone2 VAR:

trim(first(split(last(split(variables('EmailBody'),'Time Zone: '),') ')),' ('))

 

callalilycek_2-1683567728904.png

 

 

I also tried:

trim(first(split(last(split(variables('EmailBody'), 'Time Zone: ')),')('))

 

which gave all the info for the Time Zone field.

callalilycek_5-1683567987438.png

 

TimeZone VAR:

first(split(variables('TimeZone2'), '<br'))

 

 

 

Hi @callalilycek,

Emm, I am confused😂 now.

If you only want to extract the time zone info, I think I have provided a solution already, doesn't it work?

first(split(last(split(variables('TimeZone'),')')),'('))

 

 

Best Regards,
Qi

Hello @v-qiaqi-msft,

 

Yes I have had the variables set up to pull the time zone from the start, that was not the part I needed help with. I am trying to trim the results of the time zone field so it cuts out the parts after "Time Zone:" that are in parentheses, leaving only the "Central time" or "Eastern time" piece.  

Hi @callalilycek ,

This formula you wrote is wrong.

vqiaqimsft_0-1683855671025.png

This is the correct one:

trim(first(split(last(split(last(split(variables('EmailBody'),'Time Zone: ')),') ')),' (')))

 

The last(split(variables('EmailBody'),'Time Zone: '))part meams the TimeZone variable in your scenario.

 

What's more, you could find out the expression you set for following variable, and add a Compose and write the following formula to get the info you need:

 

 

first(split(last(split(variables('TimeZone'),')')),'('))​

 

 

vqiaqimsft_0-1683857016710.png

Using trim() or not depends on you.

Best Regards,
Qi
callalilycek
Regular Visitor

That one worked, thanks!

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (938)