I have this input raw data:
`###` train should I take to get to Kuala `###`, please?
And need to convert ###
to textbox in index way.
How I can do that? My expected output would be:
<input type="text" ng-model="inputTextFIB[index]" class="input-textbox-fill-in-the-blank ng-pristine ng-untouched ng-valid ng-empty"> train should I take to get to Kuala <input type="text" ng-model="inputTextFIB[index]" class="input-textbox-fill-in-the-blank ng-pristine ng-untouched ng-valid ng-empty">, please?
Note:
inputTextFIB[index]
:- index created with how many ###
found.
Thanks for any help.