What is the best way to match fully qualified Java name.
Like java.lang.Reflect, java.util.ArrayList, org.hibernate.Hibernate
Thanks
|
What is the best way to match fully qualified Java name. Like Thanks |
||||
|
A Java fully qualified class name (lets say "N") has the structure
The "N" part must be a Java identifier. Java identifiers cannot start with a number, but after the initial character they may use any combination of letters and digits, underscores or dollar signs:
They can also not be a reserved word (like Java identifiers may contain any Unicode letter instead of "latin only". If you want to check for this as well, use Unicode character classes:
or, for short
The Java Language Specification, (section 3.8) has all details about valid identifier names. Also see the answer to this question: Java Unicode variable names |
|||||||||||||||
|
|
I'll say something like But maybe I can be more specific knowing what you want to do with it ;) |
|||||||
|
importstatements? If there's only the;to remove then don't use regex – Johan Sjöberg Mar 5 '11 at 17:13