Hi Folks,
how to store the group objects count value in a variable in <g class="gr_ gr_12 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del multiReplace" data-gr-id="12" id="12">powershell</g>.
Example.
PS C:\> 1,2,3,1,2,1 | group
Count Name Group
----- ---- -----
3 1 {1, 1, 1}
2 2 {2, 2}
1 3 {3}
How to store the Count value that is 3 in a variable?
Thanks
Badal B