i have following
Pattern loPattern = Pattern.compile(someText.toLowerCase(), Pattern.CASE_INSENSITIVE | Pattern.DOTALL);
this line throws exception if someText has pattern like e[l
this someText can contain characters [a-z][A-Z][0-9]!@#$%^&;*()_+=|{}[];:'"<>;,.?/`~§ -
whats the possible solution for it?