Results 1 to 1 of 1
Thread: regular expression for unicode
- 04-01-2008, 10:53 PM #1
Member
- Join Date
- Apr 2008
- Posts
- 1
- Rep Power
- 0
regular expression for unicode
i want to write a regular expression that accept all java identifier charchters
for the time being, str.match([a-zA-z]\\w*); is fine with me.
but i need to make it accept other java identifiers like underscore and NON_ENGLISH charchters
for english_arabic java identifiers i could use:
str.match([a-zA-zء-ي][a-zA-zء-ي0-9]*);
but what about other languages ?
pls helpLast edited by tharhan; 04-01-2008 at 10:55 PM.
Similar Threads
-
Unicode problem
By rovshanb in forum JDBCReplies: 0Last Post: 02-14-2008, 06:41 AM -
Regular expression for file path
By ravian in forum New To JavaReplies: 3Last Post: 01-25-2008, 08:24 PM -
Regular expression with Unions
By Java Tip in forum Java TipReplies: 0Last Post: 01-09-2008, 12:03 PM -
Regular expression with Intersections
By Java Tip in forum Java TipReplies: 0Last Post: 01-09-2008, 12:03 PM -
I can't find the right regular expression
By romina in forum New To JavaReplies: 1Last Post: 08-07-2007, 05:36 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks