Here are my Find What reg-ex which matches all of those I'm going to grab.
<{_}{[A-Z\s+]}{[a-z0-9]*}>
Like _ColumnId
, Now how to convert upper-case char after _
to lower-case equivalent? (_columnId
)
Unfortunately this is not possible to do in a general way. Matching the pattern is fairly straight forward as you an do with roughly the following
_{[A-Z]}
Then the expression \1
can be used to access the upper case letter. Unfortunately though there is no way in VS to say
Please replace with a lower case version of this expression
This puts you up against a wall. The only option is to do a search and replace for each of the 26 letters. Very labor intensize and not fun at all.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With