Hi. All.
I want to extract and count strings from the SharePoint list.
For example, it looks like this.
asfweabcgfrthoabcopfgrkpabc
Count how many "abc" are in this string.
You can see if you look at it, but the answer is 3.
In Excel, you can use the CountIf function, but in Microsoft Flow, what do you do if you want to do something like that?
Thanks.
Solved! Go to Solution.
Hi @DrinkWater
I used the split and length expressions to do this. Please see the screenshot below:
Expression: sub(length(split(variables('tesat'),'abc')),1)
Split function splits the string and creates a new array. Then we count the elements of that array and finally subtract 1 from that (indexing) to get the total number of instances of the string match.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @DrinkWater
I used the split and length expressions to do this. Please see the screenshot below:
Expression: sub(length(split(variables('tesat'),'abc')),1)
Split function splits the string and creates a new array. Then we count the elements of that array and finally subtract 1 from that (indexing) to get the total number of instances of the string match.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi, @yashag2255
Wow! It's amazing.
I did not think that I could do something like this.
Thank you for teaching me.
This thread is closed.
And I'm sorry. I was able to do something new to listen to.
Also, it would be helpful if someone could tell me.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
Watch Nick Doelman's session from the 2020 Power Platform Community Conference on demand!
User | Count |
---|---|
42 | |
37 | |
37 | |
35 | |
25 |
User | Count |
---|---|
38 | |
36 | |
33 | |
31 | |
30 |