Found this site:
And it works for the first character but my lines are line this
this_is_a_string
And I would like this
This_Is_A_String
Any thoughts?
VI Command would be nice but any other simple solution would work as well
|
Found this site: And it works for the first character but my lines are line this
And I would like this
Any thoughts? VI Command would be nice but any other simple solution would work as well | |||
|
feedback
|
|
do the first will uppercase the first letter of every line, the second will uppercase the first letter after each underscore in all lines. | |||
|
feedback
|
|
Combining the two search/replace Rob suggested: :%s/^.\|_./\U&/gc will search for either the first char in a line or the first char following an _ 'or' is specified by \| the 'g' will change all occurrences in a line the 'c' will ask for confirmation Bill | |||
|
feedback
|