इस लेख में, हम समझेंगे कि किसी स्ट्रिंग के रिक्त स्थान को एक विशिष्ट वर्ण से कैसे बदला जाए। स्ट्रिंग एक डेटाटाइप है जिसमें एक या अधिक वर्ण होते हैं और दोहरे उद्धरण चिह्नों ("") में संलग्न होते हैं।
नीचे उसी का एक प्रदर्शन है -
मान लीजिए कि हमारा इनपुट है -
Input string: Java Program is fun to learn Input character: $
वांछित आउटपुट होगा -
The string after replacing spaces with given character is: Java$Program$is$fun$to$learn
एल्गोरिदम
Step 1 - START Step 2 - Declare a string namely input_string, a char namely input_character. Step 3 - Define the values. Step 4 - Using the function replace(), replace the white space with the specified character. Step 5 - Display the result Step 6 - Stop
उदाहरण 1
यहां, हम 'मेन' फंक्शन के तहत सभी ऑपरेशंस को एक साथ बांधते हैं।
public class Demo { public static void main(String[] args) { String input_string = "Java Program is fun to learn"; System.out.println("The string is defined as: " +input_string); char input_character = '$'; System.out.println("The character is defined as: " +input_character); input_string = input_string.replace(' ', input_character); System.out.println("The string after replacing spaces with given character is: "); System.out.println(input_string); } }
आउटपुट
The string is defined as: Java Program is fun to learn The character is defined as: $ The string after replacing spaces with given character is: Java$Program$is$fun$to$learn
उदाहरण 2
यहां, हम ऑब्जेक्ट-ओरिएंटेड प्रोग्रामिंग को प्रदर्शित करने वाले कार्यों में संचालन को समाहित करते हैं।
public class Demo { static void space_replace(String input_string, char input_character){ input_string = input_string.replace(' ', input_character); System.out.println("The string after replacing spaces with given character is: "); System.out.println(input_string); } public static void main(String[] args) { String input_string = "Java Program is fun to learn"; System.out.println("The string is defined as: " +input_string); char input_character = '$'; System.out.println("The character is defined as: " +input_character); space_replace(input_string, input_character); } }
आउटपुट
The string is defined as: Java Program is fun to learn The character is defined as: $ The string after replacing spaces with given character is: Java$Program$is$fun$to$learn