<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; regular expression</title> <atom:link href="http://www.ghacks.net/tag/regular-expression/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sat, 11 Feb 2012 08:24:54 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>RegName, Fast Regular Expression Based File Name Changer</title><link>http://www.ghacks.net/2011/08/13/regname-fast-regular-expression-based-file-name-changer/</link> <comments>http://www.ghacks.net/2011/08/13/regname-fast-regular-expression-based-file-name-changer/#comments</comments> <pubDate>Sat, 13 Aug 2011 18:02:33 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[file renamer]]></category> <category><![CDATA[regname]]></category> <category><![CDATA[regular expression]]></category> <category><![CDATA[rename]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=49036</guid> <description><![CDATA[Have you ever tried to rename a number of files, say a few dozen, in Windows Explorer? The renaming operation takes a long time. In addition, renaming those files is a repetitive boring process, especially if the multi-file renaming option of Windows Explorer is of no use to you. Enter RegName, a free Open Source [...]]]></description> <content:encoded><![CDATA[<p>Have you ever tried to rename a number of files, say a few dozen, in Windows Explorer? The renaming operation takes a long time. In addition, renaming those files is a repetitive boring process, especially if the multi-file renaming option of Windows Explorer is of no use to you.</p><p>Enter RegName, a free Open Source program for Windows to rename multiple files in a directory easily. It can for instance be used to change the name of a series of photos you want to rename, log files, videos that you have created or any other kinds of files.</p><p>You can either start the program directly and switch to the folder that stores the files that you want to rename, or you can use the Windows Explorer integration to do the same. Just right-click in Windows Explorer on the folder that stores the files you want to rename and select Rename files using RegName to launch the program with that folder preselected.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/regname-file-renamer.png" alt="regname file renamer" title="regname file renamer" width="552" height="406" class="alignnone size-full wp-image-49037" /></p><p>Regname is supporting regular expressions to match and rename file names. The basic match pattern is set to <name>.<ext> which would catch all file names in the folder that have a period in their file name.</p><p>You can then use those values again in the replace pattern if you like. Jerusalem-<name>.<ext> would for instance add Jerusalem in front of the existing file name and extension (as the example looks at a folder of photos taken in Jerusalem).</p><p>But regular expressions are way more powerful than those basic examples. You can completely rewrite the file name or use information from the existing file name.</p><p>The preview button is handy as it allows you to verify that the new file names will look exactly as you want them to look. A click on Rename finally runs the rename operation on all files that match the pattern.</p><p>RegName comes with a command line version that you can use as well. The most interesting option besides the ability to use the command line version in batch file operations is the ability to rename files in sub-folders as well, something that is not possible with the gui version of the program.</p><p>Windows users can download RegName <a
href="http://regname.codeplex.com/releases/view/65125#DownloadId=232382">directly from</a> Codeplex. Be advised that the program requires the Microsoft .NET Framework 2.0. The program is compatible with all recent 32-bit and 64-bit editions of the Windows operating system.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/08/13/regname-fast-regular-expression-based-file-name-changer/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Regular Expression Coach</title><link>http://www.ghacks.net/2009/04/14/regular-expression-coach/</link> <comments>http://www.ghacks.net/2009/04/14/regular-expression-coach/#comments</comments> <pubDate>Tue, 14 Apr 2009 15:21:21 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[coding]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[regex]]></category> <category><![CDATA[regex coach]]></category> <category><![CDATA[regular expression]]></category> <category><![CDATA[regular expression test]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=11991</guid> <description><![CDATA[Regular expression can be used to identify strings of text. They are written in a formal language that looks hard to understand on first glance but follows strict rules. Most users associated regular expressions with programming languages and while this is surely a dominant area regular expressions are supported in text editors and other tools. [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/regular_expressions.jpg" alt="regular expressions" title="regular expressions" width="156" height="120" class="alignleft size-full wp-image-11988" />Regular expression can be used to identify strings of text. They are written in a formal language that looks hard to understand on first glance but follows strict rules. Most users associated regular expressions with programming languages and while this is surely a dominant area regular expressions are supported in text editors and other tools. One of the most popular is probably grep in the Linux operating system.</p><p>The <a
href="http://weitz.de/regex-coach/">Regex Coach</a> is an excellent software program to learn regular expressions as it displays realtime results in its interface. The interface itself is divided into two display panes that contain the regular expression and the target strings. Below are tabs and buttons that provide additional functionality.</p><p>A user who wants to test a regular expression would enter it in the first column and add a target string in the second. The program automatically highlights the area of the target string that is matched by the regular expression. Any modification to the regular expression will automatically be visualized in the target string pane.</p><p><span
id="more-11991"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/regular_expressions-494x500.png" alt="regular expressions" title="regular expressions" width="494" height="500" class="alignnone size-medium wp-image-11989" /></p><p>Invalid entries are displayed automatically as a status message. The program will for instance notify the user if a bracket has not been closed which would make the expression invalid.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/regular_expression_coach-500x395.png" alt="regular expression coach" title="regular expression coach" width="500" height="395" class="alignnone size-medium wp-image-11990" /></p><p>The Regex Coach is a learning by doing aid for learning or verifying regular expressions. There is still need for a documentation on regular expressions like <a
href="http://www.regular-expressions.info/">this one</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/04/14/regular-expression-coach/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
