Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

for example c:\55.bmp (3,4) (45,7)

I want to get the filepath which is c:\55.bmp and the numbers 3 4 45 and 7

Thank you!!!

share|improve this question
are you asking for a reg ex pattern for c:\55.bmp (3,4) (45,7) or are you just asking how to get a file name from a file path ? – CoolBeans Jan 31 '11 at 2:24
asking for a regex used in java to get the path of the file and those 4 numbers – eggyolk13 Jan 31 '11 at 2:36

1 Answer

up vote 2 down vote accepted

([A-z]:\\[^\s]*)\s\((\d*),(\d*)\)\s\((\d*),(\d*)\)

This pattern will match "c:\55.bmp (3,4) (45,7)" with subgroups:

$1 = C:\55.bmp
$2 = 3
$3 = 4
$4 = 45
$5 = 7
share|improve this answer
Thank you so much! – eggyolk13 Jan 31 '11 at 2:31
Sure. Just remember this is dependent upon the format of "filepath_(#,#)_(#,#)" whereas "_" denotes a required space. – jerluc Jan 31 '11 at 2:32
Thank you so much! but it seems not work with java pattern Pattern pattern = Pattern.compile("([A-z]:\[^\s]*)\s((\d*),(\d*))\s((\d*),(\d*))"); doesn't complie – eggyolk13 Jan 31 '11 at 2:38
I change it to "([A-z]:\\\[^\\s]*)\\s\((\\d*),(\\d*)\)\\s\((\\d*),(\\d*)\)" it seems compile, but I still need to test it. thank you! – eggyolk13 Jan 31 '11 at 2:44
1  
@jerluc: Did you really mean to write [A-z]? If you're trying to match uppercase and lowercase letters, you have to spell it out: [A-Za-z]. [A-z] also matches the six punctuation characters whose code points lie between Z and a. – Alan Moore Jan 31 '11 at 5:22
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.