ในโปรแกรมนี้ เราจะมาดูวิธีการลบเลขศูนย์ต่อท้ายออกจากสตริงในภาษา C++ บางครั้งสตริงอาจมีเลขศูนย์ต่อท้าย เช่น "00023054" หลังจากรันโปรแกรมนี้ มันจะส่งคืน "23054" เท่านั้น เลขศูนย์เริ่มต้นจะถูกลบออก
Input: A string with trailing zeros “000023500124” Output: “23500124”
อัลกอริทึม
Step 1: Get the string Step 2: Count number of trailing zeros n Step 3: Remove n characters from the beginning Step 4: return remaining string.
โค้ดตัวอย่าง
#include<iostream> using namespace std; main() { string my_str = "000023500124"; int num = 0; cout << "Number with Trailing Zeros :" << my_str << endl; //count number of trailing zeros in the string while(my_str[num] == '0') { num++; } my_str.erase(0, num); //erase characters from 0 to i index cout << "Number without Trailing Zeros :" << my_str; }
ผลลัพธ์
Number with Trailing Zeros :000023500124 Number without Trailing Zeros :23500124