Regex expression token find and replace - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:30:02Z http://stackoverflow.com/feeds/question/233074 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace 0 Regex expression token find and replace test 2008-10-24T10:54:30Z 2008-10-24T13:21:04Z <p>Hi,</p> <p>Please could someone help me with writing a regex expression to replace 0044 token which will be at the start of the string with a 0. Please note that I do not want to replace all 0044 tokens with 0, only those that appear at the start of the string.</p> <p>Thanks a lot</p> http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace/233076#233076 1 Answer by Graeme Perrow for Regex expression token find and replace Graeme Perrow 2008-10-24T10:56:04Z 2008-10-24T10:56:04Z <p>In perl: </p> <pre><code>s/^0044/0/; </code></pre> <p>The <code>^</code> means that the match will only happen at the beginning of the string.</p> http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace/233430#233430 0 Answer by test for Regex expression token find and replace test 2008-10-24T12:59:28Z 2008-10-24T12:59:28Z <p>I'm trying to acheive it in notepad ++ find and replace selecting the regular expression option...</p> http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace/233442#233442 0 Answer by David Santamaria for Regex expression token find and replace David Santamaria 2008-10-24T13:02:26Z 2008-10-24T13:02:26Z <p>Then why you dont put an space at the begining in the search and replace boxes, i mean:</p> <pre><code>Search: " 0044" Replace " 0" </code></pre> <p>Good luck!</p> http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace/233464#233464 0 Answer by Timbo for Regex expression token find and replace Timbo 2008-10-24T13:08:06Z 2008-10-24T13:08:06Z <p>The ^ works in notepad++ to match the beginning of the line.</p> http://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace/233480#233480 0 Answer by Vivek for Regex expression token find and replace Vivek 2008-10-24T13:12:29Z 2008-10-24T13:18:59Z <p>If you really want to use regex its already answered above. i.e</p> <p>Find What: <code>^0044</code></p> <p>Replace With: <code>0</code></p> <p>But here is a crude way to do it:</p> <p>Press ALT, then select all the '<code>044</code>'s vertically using mouse and delete them. Keep ATL pressed while making the selection. </p>