Hi,

You don't need regexp. Do you mean something like:

  private static final String ISO8601_DATEFORMAT =
"yyyy-MM-dd'T'HH:mm:ss";

  private static final java.text.SimpleDateFormat ISO8601 = new
java.text.SimpleDateFormat(
      ISO8601_DATEFORMAT, java.util.Locale.US);


  public static final Date getDateFromIso8601(final String iso8601)
throws ParseException {
    return ISO8601.parse(iso8601);
  }

best,
-Rob


On Thu, 2008-05-15 at 12:00 -0400, Christopher Schultz wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> All,
> 
> I posted this on the commons-user mailing list, but I'm not getting any
> love. I'm cross-posting to see if anyone on this list might have any
> good ideas.
> 
> | Hi, I'm looking for an implementation of a String->Date converter for
> | xs:dateTime, which has an odd format. It's not directly supportable by
> | java.text.SimpleDateFormat and looks like a regular expression is the
> | only way to go.
> |
> | Does anyone have an implementation they'd care to share, or any tips in
> | particular? I'd be glad to share whatever I come up with if there isn't
> | anything already out there.
> 
> My existing implementation uses regular expressions, which seems a bit
> overkill.
> 
> Thanks,
> - -chris
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.9 (MingW32)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
> 
> iEYEARECAAYFAkgsXdIACgkQ9CaO5/Lv0PAZawCffPNDLZ3bXczy89Cm1ptDzu1E
> va4AnRjfICMeUROWQGI40ts3CwZXtEOB
> =dDWw
> -----END PGP SIGNATURE-----
> 
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to