std :: string DeleteUnderscore ( std :: string str ) { for ( char & ch : str ) if ( ch == '_' ) ch = ' ' ; return str ; }