java - regular expression for string " a123ab-lift(admin-hat)" -


मैं regex को जानना चाहता हूं जो

a123ab-lift (व्यवस्थापक-हैट )

मेरी स्ट्रिंग में वर्णमाला, संख्याएं और वर्ण हो सकते हैं "(", ")", "-"

निम्न कार्य करेगा।

  [a-zA-Z0-9 () -] *   

उदाहरण:

  स्ट्रिंग s = "a123ab-lift (व्यवस्थापक-टोपी)"; पैटर्न p = Pattern.compile ("[a-zA-Z0- 9 () -] *"); मैचर एम = पी। मेटचर (एस); Println (m.matches ()); // True    

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 -