Tag Archives: Huruf

Program JavaScript untuk Mengubah Huruf Pertama dari String menjadi Huruf Besar

Contoh 1: Ubah huruf pertama menjadi Huruf Besar // program to convert first letter of a string to uppercase function capitalizeFirstLetter(str) { // converting first letter to uppercase const capitalized = str.charAt(0).toUpperCase() + str.slice(1); return capitalized; } // take input const string = prompt(‘Enter a string: ‘); const result = capitalizeFirstLetter(string); console.log(result); Keluaran Enter a […]

Program C ++ untuk Menghapus semua Karakter dalam String Kecuali Huruf.

Contoh 1: Hapus semua karakter kecuali huruf Program ini mengambil input string (objek) dari pengguna dan menghapus semua karakter kecuali huruf. #include using namespace std; int main() { string line; string temp = “”; cout = ‘a’ && line[i] = ‘A’ && line[i]