এই নিবন্ধে, আমরা বুঝতে পারব কিভাবে একটি স্ট্রিং থেকে সমস্ত হোয়াইটস্পেস মুছে ফেলা যায়। স্ট্রিং একটি ডেটাটাইপ যা এক বা একাধিক অক্ষর ধারণ করে এবং ডবল উদ্ধৃতি (“ ”) দিয়ে আবদ্ধ থাকে।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ধরুন আমাদের ইনপুট হল −
Input string: Java programming is fun to learn.
কাঙ্খিত আউটপুট হবে −
The string after replacing white spaces: Javaprogrammingisfuntolearn.
অ্যালগরিদম
Step 1 - START Step 2 - Declare two strings namely String input_string and result. Step 3 - Define the values. Step 4 - Use the function replaceAll("\\s", "") to replaces all the white spaces with blank spaces. Step 5 - Display the result Step 6 - Stop
উদাহরণ 1
এখানে, আমরা 'প্রধান' ফাংশনের অধীনে সমস্ত ক্রিয়াকলাপ একসাথে আবদ্ধ করি।
public class Demo { public static void main(String[] args) { String input_string = "Java programming is fun to learn."; System.out.println("The string is defined as: " + input_string); String result = input_string.replaceAll("\\s", ""); System.out.println("\nThe string after replacing white spaces: " + result); } }
আউটপুট
The string is defined as: Java programming is fun to learn. The string after replacing white spaces: Javaprogrammingisfuntolearn.
উদাহরণ 2
এখানে, আমরা ক্রিয়াকলাপগুলিকে অবজেক্ট-ওরিয়েন্টেড প্রোগ্রামিং প্রদর্শনকারী ফাংশনে অন্তর্ভুক্ত করি।
public class Demo { public static String string_replace(String input_string){ String result = input_string.replaceAll("\\s", ""); return result; } public static void main(String[] args) { String input_string = "Java programming is fun to learn."; System.out.println("The string is defined as: " + input_string); String result = string_replace(input_string); System.out.println("\nThe string after replacing white spaces: " + result); } }
আউটপুট
The string is defined as: Java programming is fun to learn. The string after replacing white spaces: Javaprogrammingisfuntolearn.