Advertisement

1 - 9 of 9 containing alltags:("Java Regular Expression") (0.001 seconds)
I have the following function: String transform(String input) {     Pattern pattern = Pattern.compile("(\d+) (Jan|Feb|Mar) (\d\d\d\d)");     Matcher matcher = pattern.matcher(input);     retu...
Zones: Regular Expressions, JavaDate Answered: 09/30/2007 Grade: A Views: 0
Hi,     Can anyone of you help me with a regular expression which will not allow certain special characters like ~`@#$ . All others (like all alphanumerics and Chinese and any other language chara...
Zones: Regular Expressions, JavaDate Answered: 02/27/2008 Grade: A Views: 284
I want to filter valid names, if it matters I write in Java. Valid names should: 1. include alpha numeric 2. can also include '-'  '_'  '@'  '#'  '%'  '^'  '+'  ':'  ')'  '('  ',' 3. '_' canno...
Zones: Regular Expressions, JavaDate Answered: 03/03/2008 Grade: A Views: 75
Hi, I need help with a regular expression. Im doing it in Java 1.4 on Solaris platform.. I'm having a program that returns an output string and I want to asser whether this output string meet...
Zones: Java, RubyDate Answered: 01/20/2006 Grade: A Views: 0
Hello - I need to do some server-side and client-side validations using regular expressions.  Below I have listed the client-side Javascript code which is working fine, but I can't seem to get the ...
Zones: JavaDate Answered: 04/06/2006 Grade: A Views: 0
I am creating a java extractor that pulls a specific keyword from html source...unfortunately the word(s) I am trying to extract are not surrounded by unique tags, below is a sample of the source. ...
Zones: Regular Expressions, Programming, JavaDate Answered: 10/04/2007 Grade: A Views: 9
I ve a requirement in which I ve to restrict the users not to enter any 16 digit number in the text area provided. The value entered in the text area will be in a String . I am using regEx to capt...
Zones: Java, ProgrammingDate Answered: 04/14/2008 Grade: A Views: 4
In order to change the minimum font size in HTML to be 3, for a string such as:    Font face="Times New Roman" size=1 it would be helpful to be able use two substrings:    Font face=\"[A-Z...
Zones: JavaDate Answered: 11/17/2006 Grade: A Views: 0
Hi,    Can anyone help me with this problem: How can I split CSV file in Java (into separate columns), using built-in regex functions (for efficiency), but ignore everything in double quotes? S...
Zones: Regular Expressions, Java, Java Applica...Date Answered: 10/22/2008 Grade: A Views: 22
  • 1