java - removing underscore form a string -


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

  • 6 जवाब

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

      abcd = "name_person"   

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

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

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

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

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -