Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
236 views
in Programming by
I am trying to split string using Java split function but it does not split string.

 

this.getClass().getName().split(".");

1 Answer

0 like 0 dislike
by
selected by
 
Best answer

java.lang.String.split splits on regular expressions, and . in a regular expression means "any character".

Try this.getClass().getName().split("\\.").

 


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...