How to select a file path using regex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T01:30:22Z http://stackoverflow.com/feeds/question/821806 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex 0 How to select a file path using regex joe 2009-05-04T20:11:58Z 2009-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>&lt;!DOCTYPE "file:C:/Documentum/XML%20Applications/joesdev/goodnews/book.dtd"/&gt; &lt;myBook&gt;cool book&lt;/myBook&gt; </code></pre> <p>Does anyone have any ideas? Thanks!!</p> http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821827#821827 0 Answer by Martijn for How to select a file path using regex Martijn 2009-05-04T20:16:28Z 2009-05-04T20:16:28Z <p><code>"file:.*/[^/]*"/&gt;</code></p> http://stackoverflow.com/questions/821806/how-to-select-a-file-path-using-regex/821845#821845 3 Answer by mmyers for How to select a file path using regex mmyers 2009-05-04T20:18:57Z 2009-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#821852 0 Answer by Jeremy Huiskamp for How to select a file path using regex Jeremy Huiskamp 2009-05-04T20:20:06Z 2009-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#821866 0 Answer by dfa for How to select a file path using regex dfa 2009-05-04T20:23:27Z 2009-05-04T20:23:27Z <pre><code>String newPath = "C:/Documentum/badnews"; String originalPath = "&lt;!DOCTYPE \"file:C:/Documentum/XML%20Applications/joesdev/goodnews/book.dtd\"/&gt;"; System.out.println(originalPath.replaceFirst("file:C:((/[/\\w%]+))", newPath)); </code></pre>