Regex Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreRegex Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 11th, 2008, 03:30 PM
vijayprasad vijayprasad is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2008
Posts: 1 vijayprasad User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 13 sec
Reputation Power: 0
Convert Java RegEx to JavaScript RegEx

Hi
I need a help in finding out an equivalent javascript regex representation to my java regex expression

Below is my code in java:
public static final String postcodePatternString =
"(((" +
"([A-Z&&[^QVX]])" +
"(" +
"((\\d)|(\\d\\d)|(\\d[ABCDEFGHJKSTUW]))|" + |
"(([A-Z&&[^IJZ]]\\d)(((\\d)|([ABEHMNPRVWXY]))?))" +
"))"+
"(" + " " +
"(\\d[A-Z&&[^CIKMOV]][A-Z&&[^CIKMOV]]))" +")"+
"|(" +
"([A-Z&&[^QVX]])" + //A
"(" +
"((\\d)|(\\d\\d)|(\\d[ABCDEFGHJKSTUW]))|" + |
"(([A-Z&&[^IJZ]]\\d)(((\\d)|([ABEHMNPRVWXY]))?))" +
"))" + "(\\d[A-Z&&[^CIKMOV]][A-Z&&[^CIKMOV]]))"+
"|(GIR 0AA)" +
"|(GIR0AA)"
;

CAN any one tell me how to convert this is in to equivalent javascript RegEx?

Any help is highly appreciated, i need it urgently.

Thanks.

Reply With Quote
  #2  
Old November 12th, 2008, 04:14 AM
requinix's Avatar
requinix requinix is offline
Still alive
Click here for more information.
 
Join Date: Mar 2007
Location: Washington, USA
Posts: 12,690 requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)requinix User rank is General 120th Grade (Above 100000 Reputation Level)  Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1Folding Points: 417516 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 5 Months 1 Week 4 Days 3 h 43 m 47 sec
Reputation Power: 8969
Send a message via AIM to requinix Send a message via MSN to requinix Send a message via Yahoo to requinix Send a message via Google Talk to requinix
Dear Lord. You sure that's a regex and not some obfuscated Java code?

Have you tried using it without any adjustments? You need to wrap the whole thing in /.../s if you want it done natively, or you can use the RegExp class (in a very logical manner).

Reply With Quote
  #3  
Old November 13th, 2008, 04:37 PM
prometheuzz prometheuzz is offline
User 165270
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2005
Posts: 497 prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level)prometheuzz User rank is General (90000 - 100000 Reputation Level) 
Time spent in forums: 5 Days 10 h 14 m 35 sec
Reputation Power: 936
Quote:
Originally Posted by vijayprasad
Hi
I need a help in finding out an equivalent javascript regex representation to my java regex expression

Below is my code in java:
public static final String postcodePatternString =
"(((" +
"([A-Z&&[^QVX]])" +
"(" +
"((\\d)|(\\d\\d)|(\\d[ABCDEFGHJKSTUW]))|" + |
"(([A-Z&&[^IJZ]]\\d)(((\\d)|([ABEHMNPRVWXY]))?))" +
"))"+
"(" + " " +
"(\\d[A-Z&&[^CIKMOV]][A-Z&&[^CIKMOV]]))" +")"+
"|(" +
"([A-Z&&[^QVX]])" + //A
"(" +
"((\\d)|(\\d\\d)|(\\d[ABCDEFGHJKSTUW]))|" + |
"(([A-Z&&[^IJZ]]\\d)(((\\d)|([ABEHMNPRVWXY]))?))" +
"))" + "(\\d[A-Z&&[^CIKMOV]][A-Z&&[^CIKMOV]]))"+
"|(GIR 0AA)" +
"|(GIR0AA)"
;

CAN any one tell me how to convert this is in to equivalent javascript RegEx?

Any help is highly appreciated, i need it urgently.

Thanks.


That is not a valid String literal in Java. There are some '|' characters outside of it.
To convert it, just print it out in a small Java application: that way you loose the double escapes and can create a JS-regex of it.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreRegex Programming > Convert Java RegEx to JavaScript RegEx

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap