How to select a file path using regex - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T01:30:22Zhttp://stackoverflow.com/feeds/question/821806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex0How to select a file path using regexjoe2009-05-04T20:11:58Z2009-05-04T20:23:27Z
<p>I would like like to create a java regular expression that selects everything from <strong>file:</strong> to the last forward slash (/) in the file path. This is so I can replace it with a different path.</p>
<pre><code><!DOCTYPE "file:C:/Documentum/XML%20Applications/joesdev/goodnews/book.dtd"/>
<myBook>cool book</myBook>
</code></pre>
<p>Does anyone have any ideas? Thanks!!</p>
http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821827#8218270Answer by Martijn for How to select a file path using regexMartijn2009-05-04T20:16:28Z2009-05-04T20:16:28Z<p><code>"file:.*/[^/]*"/></code></p>
http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821845#8218453Answer by mmyers for How to select a file path using regexmmyers2009-05-04T20:18:57Z2009-05-04T20:18:57Z<p>You just want to go to the last slash before the end-quote, right? If so:</p>
<blockquote>
<p><code>file:[^"]+/</code></p>
</blockquote>
<p>(the string "file:", then anything but ", ending with a /)<br />
Properly escaped:</p>
<pre><code>String regex = "file:[^\"]+/";
</code></pre>
http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821852#8218520Answer by Jeremy Huiskamp for How to select a file path using regexJeremy Huiskamp2009-05-04T20:20:06Z2009-05-04T20:20:06Z<p>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.</p>
http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821866#8218660Answer by dfa for How to select a file path using regexdfa2009-05-04T20:23:27Z2009-05-04T20:23:27Z<pre><code>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));
</code></pre>