I want to get the string which are there after $ctrl in below html code snippet:
<div ng-if="$ctrl.CvReportModel.IsReady">
ng-click="$ctrl.confirmation()"></cs-page-btn>
<cs-field field="$ctrl.CvReportModel.Product" ng-model="$ctrl.UploadedFile.Product"></cs-field>
<cs-field field="$ctrl.CvReportModel.Month" ng-model="$ctrl.UploadedFile.Month"></cs-field>
So I am trying to get output like:
CvReportModel.IsReady
confirmation()
CvReportModel.Product
CvReportModel.Month
I am trying to do it using Get-Content and Select-String but still not able to get the desired output.
