up vote 0 down vote favorite
share [g+] share [fb]

I would like like to create a java regular expression that selects everything from file: to the last forward slash (/) in the file path. This is so I can replace it with a different path.

<!DOCTYPE "file:C:/Documentum/XML%20Applications/joesdev/goodnews/book.dtd"/>
<myBook>cool book</myBook>

Does anyone have any ideas? Thanks!!

link|improve this question

74% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You just want to go to the last slash before the end-quote, right? If so:

file:[^"]+/

(the string "file:", then anything but ", ending with a /)
Properly escaped:

String regex = "file:[^\"]+/";
link|improve this answer
This is what I came up with, but was too slow to post it before you. – dustyburwell May 4 '09 at 20:24
feedback

"file:.*/[^/]*"/>

link|improve this answer
Thanks... is it possible to not include anything beyond "goodnews/" – joe May 4 '09 at 20:18
You need to use ()s to group what you want and then get the appropriate group from the resulting match object. – Jeremy Huiskamp May 4 '09 at 20:20
feedback

You could try to process this yourself, but a better scheme would be to just pick out the parts between the quotes and use java.util.File to separate the directory name from the filename. That way you don't have to worry about / vs \ or various escape characters.

link|improve this answer
feedback
String newPath = "C:/Documentum/badnews";
String originalPath = "<!DOCTYPE \"file:C:/Documentum/XML%20Applications/joesdev/goodnews/book.dtd\"/>";
System.out.println(originalPath.replaceFirst("file:C:((/[/\\w%]+))", newPath));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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