following up to https://lwpro2.wordpress.com/2021/06/04/regex-group/
the way to upper case any character through regex, is like
from `\.([a-z])`
to `.set\U$1`
this would change `.marketPrice(...)
to `.setMarketPrice(...)
following up to https://lwpro2.wordpress.com/2021/06/04/regex-group/
the way to upper case any character through regex, is like
from `\.([a-z])`
to `.set\U$1`
this would change `.marketPrice(...)
to `.setMarketPrice(...)