Regex expression token find and replace - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:30:02Zhttp://stackoverflow.com/feeds/question/233074http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/233074/regex-expression-token-find-and-replace0Regex expression token find and replacetest2008-10-24T10:54:30Z2008-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#2330761Answer by Graeme Perrow for Regex expression token find and replaceGraeme Perrow2008-10-24T10:56:04Z2008-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#2334300Answer by test for Regex expression token find and replacetest2008-10-24T12:59:28Z2008-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#2334420Answer by David Santamaria for Regex expression token find and replaceDavid Santamaria2008-10-24T13:02:26Z2008-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#2334640Answer by Timbo for Regex expression token find and replaceTimbo2008-10-24T13:08:06Z2008-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#2334800Answer by Vivek for Regex expression token find and replaceVivek2008-10-24T13:12:29Z2008-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>