Converts: some_name_xyz to: Some Name Xyz
| 102 | // Converts: some_name_xyz |
| 103 | // to: Some Name Xyz |
| 104 | string ToTitle(const string& name) { |
| 105 | string title = name; |
| 106 | for (int i = 0; i < title.size(); ++i) { |
| 107 | if (title[i] == '_') title[i] = ' '; |
| 108 | } |
| 109 | str_util::TitlecaseString(&title, " "); |
| 110 | return title; |
| 111 | } |
| 112 | |
| 113 | // Change: Into: |
| 114 | // ABC /// ABC |
no test coverage detected