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.
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
86 | |
58 | |
50 | |
42 | |
35 |
User | Count |
---|---|
91 | |
76 | |
74 | |
60 | |
42 |