java - removing underscore form a string -


इस सवाल का पहले से ही एक उत्तर है: < / P>

  • 6 जवाब

    मेरे पास स्ट्रिंग है जो दिखता है जैसे कि

      abcd = "name_person"   

    लेकिन मैं इसे इस तरह पढ़ना चाहूंगा:

      abcd = "नामपरिवार"   

    मैं जावा के साथ यह कैसे कर सकता हूँ

      abcd = abcd.replaceAll ("_", "");    

Comments

Popular posts from this blog

sql - Return Function using Cursor -

sql server - How to use pivot in this table -

javascript - Is there any way to add a new parameter to a function programmatically? -