2
I want to give a find/replace in all the attributes html "data-placeholder" and its values, of my application, through the search of Visual Studio.
For this I need to assemble a regular expression and place it directly in the Visual Studio find, activating the regular expression option.
But I know almost nothing about regular expressions to be able to create one like.
I would like the regular expression to make me find all these string types:
data-placeholder="Texto 1"
data-placeholder="Texto 2"
data-placeholder="Texto com muitos caracteres"
data-placeholder=""
Perfect! I will save to use in other situations!
– Joao Paulo