इस लेख में, हम समझेंगे कि कैसे जांचा जाए कि कोई स्ट्रिंग खाली है या नहीं। स्ट्रिंग एक डेटाटाइप है जिसमें एक या अधिक वर्ण होते हैं और दोहरे उद्धरण चिह्नों ("") में संलग्न होते हैं।
नीचे उसी का एक प्रदर्शन है -
मान लें कि हमारा इनपुट है -
Input string: null
वांछित आउटपुट होगा -
The string is a null string
एल्गोरिदम
Step 1 - START Step 2 - Declare a string namely input_string. Step 3 - Define the values. Step 4 - Using an if-loop, compute input_string == null. If true, the string is null, else the string is not null. Step 5 - Display the result Step 6 - Stop
उदाहरण 1
यहां, हम 'मेन' फंक्शन के तहत सभी ऑपरेशंस को एक साथ बांधते हैं।
public class Demo { public static void main(String[] args) { String input_string = null; System.out.println("The string is defined as: " +input_string); if (input_string == null) { System.out.println("\nThe string is a null string"); } else if(input_string.isEmpty()){ System.out.println("\nThe string is an empty string"); } else { System.out.println("\nThe string is neither empty nor null string"); } } }
आउटपुट
The string is defined as: null The string is a null string
उदाहरण 2
यहां, हम ऑब्जेक्ट-ओरिएंटेड प्रोग्रामिंग को प्रदर्शित करने वाले कार्यों में संचालन को समाहित करते हैं।
public class Demo { static void isNullEmpty(String input_string) { if (input_string == null) { System.out.println("\nThe string is a null string"); } else if(input_string.isEmpty()){ System.out.println("\nThe string is an empty string"); } else { System.out.println("\nThe string is neither empty nor null string"); } } public static void main(String[] args) { String input_string = null; System.out.println("The string is defined as: " +input_string); isNullEmpty(input_string); } }
आउटपुट
The string is defined as: null The string is a null string