scratch/output/Scratch/en/blog/2009-09-replace-all-except-some-part/index.html

252 lines
12 KiB
HTML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="ruby, regexp, regular expression">
<link rel="shortcut icon" type="image/x-icon" href="/Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/Scratch/assets/css/main.css" />
<link rel="stylesheet" type="text/css" href="/Scratch/css/twilight.css" />
<link rel="stylesheet" type="text/css" href="/Scratch/css/idc.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/yannespositocomen"/>
<link rel="alternate" lang="fr" xml:lang="fr" title="Remplacer tout sauf une partie" type="text/html" hreflang="fr" href="/Scratch/fr/blog/2009-09-replace-all-except-some-part/" />
<link rel="alternate" lang="en" xml:lang="en" title="replace all except some part" type="text/html" hreflang="en" href="/Scratch/en/blog/2009-09-replace-all-except-some-part/" />
<script type="text/javascript" src="/Scratch/js/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="/Scratch/js/jquery.cookie.js"></script>
<script type="text/javascript" src="/Scratch/js/index.js"></script>
<title>replace all except some part</title>
</head>
<body lang="en">
<script type="text/javascript">// <![CDATA[
document.write('<div id="blackpage"><img src="/Scratch/img/loading.gif" alt="loading..."/></div>');
// ]]>
</script>
<div id="content">
<div id="choix">
<div class="return"><a href="#entete">&darr; Menu &darr;</a></div>
<div id="choixlang">
<a href="/Scratch/fr/blog/2009-09-replace-all-except-some-part/" onclick="setLanguage('fr')">Version Française</a>
</div>
</div>
<div id="titre">
<h1>
replace all except some part
</h1>
</div>
<div class="flush"></div>
<div class="flush"></div>
<div id="afterheader">
<div class="corps">
<p>My problem is simple:</p>
<p>I want to filter a text except some part of it. I can match easily the part I don&rsquo;t want to be filtered. For example</p>
<div>
<pre class="twilight">
...
text
...
BEGIN not to filter
...
text
...
END not to filter
...
text
...
</pre>
</div>
<p>I searched a better way to do that, but the best I can do is using <code>split</code> and <code>scan</code>.</p>
<div>
<pre class="twilight">
<span class="Keyword">def</span> <span class="Entity">allExceptCode</span>(<span class="Variable"> f<span class="Variable">,</span> content </span>)
regexp<span class="Keyword">=</span><span class="StringRegexp"><span class="StringRegexp">/</span></span><span class="StringRegexp">&lt;code<span class="StringRegexp"><span class="StringRegexp">[</span>^&gt;<span class="StringRegexp">]</span></span>*&gt;.*?&lt;<span class="StringRegexpSpecial">\/</span>code&gt;</span><span class="StringRegexp"><span class="StringRegexp">/m</span></span>
tmp<span class="Keyword">=</span><span class="String"><span class="String">&quot;</span><span class="String">&quot;</span></span>
mem<span class="Keyword">=</span>[]
content.<span class="Entity">scan</span>(regexp).<span class="Entity">each</span> <span class="Keyword">do </span>|<span class="Variable">c</span>|
mem <span class="Keyword">&lt;&lt;=</span> c
<span class="Keyword">end</span>
i<span class="Keyword">=</span><span class="Constant">0</span>
content.<span class="Entity">split</span>(regexp).<span class="Entity">each</span> <span class="Keyword">do </span>|<span class="Variable">x</span>|
tmp <span class="Keyword">&lt;&lt;=</span> <span class="Entity">send</span>(f,x)
<span class="Keyword">if</span> <span class="Keyword">not</span> mem[i].<span class="Entity">nil?</span>
tmp <span class="Keyword">&lt;&lt;=</span> mem[i]
i<span class="Keyword">+=</span><span class="Constant">1</span>
<span class="Keyword">end</span>
<span class="Keyword">end</span>
tmp
<span class="Keyword">end</span>
</pre>
</div>
<p>An usage is:</p>
<div>
<pre class="twilight">
<span class="Keyword">def</span> <span class="Entity">filter</span>(<span class="Variable">content</span>)
content.<span class="Entity">gsub</span>(<span class="StringRegexp"><span class="StringRegexp">/</span></span><span class="StringRegexp">e</span><span class="StringRegexp"><span class="StringRegexp">/</span></span>,<span class="String"><span class="String">'</span>X<span class="String">'</span></span>)
<span class="Keyword">end</span>
...
<span class="Entity">allExceptCode</span>(<span class="Constant"><span class="Constant">:</span>filter</span>, content)
...
</pre>
</div>
<p>A better syntax would be:</p>
<div>
<pre class="twilight">
<span class="Comment"><span class="Comment">#</span>&nbsp;!!!!!!!!!! THIS SYNTAX DOES NOT WORK&nbsp;!!!!!!! #</span>
<span class="Keyword">def</span> <span class="Entity">allExceptCode</span>(<span class="Variable"> f<span class="Variable">,</span> content </span>)
regexp<span class="Keyword">=</span><span class="StringRegexp"><span class="StringRegexp">/</span></span><span class="StringRegexp">&lt;code<span class="StringRegexp"><span class="StringRegexp">[</span>^&gt;<span class="StringRegexp">]</span></span>*&gt;.*?&lt;<span class="StringRegexpSpecial">\/</span>code&gt;</span><span class="StringRegexp"><span class="StringRegexp">/m</span></span>
tmp<span class="Keyword">=</span><span class="String"><span class="String">&quot;</span><span class="String">&quot;</span></span>
content.<span class="Entity">split</span>(regexp).<span class="Entity">each</span> <span class="Keyword">do </span>|<span class="Variable">x</span>|
separator<span class="Keyword">=</span><span class="Variable"><span class="Variable">$</span>&amp;</span>
tmp <span class="Keyword">&lt;&lt;=</span> <span class="Entity">send</span>(f,x)
<span class="Keyword">if</span> <span class="Keyword">not</span> separator.<span class="Entity">nil?</span>
tmp <span class="Keyword">&lt;&lt;=</span> separator
<span class="Keyword">end</span>
<span class="Keyword">end</span>
tmp
<span class="Keyword">end</span>
</pre>
</div>
<p>I would expect the split make a search on a regular expression and then give the matched expression into the <code>$&amp;</code> variable. But it is not the case.</p>
<p>If someone know a nicer way to do that I will be happy to know how.</p>
</div>
<div id="choixrss">
<a id="rss" href="http://feeds.feedburner.com/yannespositocomen">
Subscribe
</a>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#comment').hide();
$('#clickcomment').click(showComments);
});
function showComments() {
$('#comment').show();
$('#clickcomment').fadeOut();
}
document.write('<div id="clickcomment">Comments</div>');
</script>
<div class="flush"></div>
<div class="corps" id="comment">
<h2 class="first">comments</h2>
<noscript>
Vous devez activer javascript pour commenter.
</noscript>
<script type="text/javascript">
var idcomments_acct = 'a307f0044511ff1b5cfca573fc0a52e7';
var idcomments_post_id = '/Scratch/en/blog/2009-09-replace-all-except-some-part/';
var idcomments_post_url = 'http://yannesposito.com/Scratch/en/blog/2009-09-replace-all-except-some-part/';
</script>
<span id="IDCommentsPostTitle" style="display:none"></span>
<script type='text/javascript' src='/Scratch/js/genericCommentWrapperV2.js'></script>
</div>
<div id="entete" class="corps_spaced">
<div id="liens">
<ul><li><a href="/Scratch/en/">Homepage</a></li>
<li><a href="/Scratch/en/blog/">Blog</a></li>
<li><a href="/Scratch/en/about/">About</a></li>
<li><a href="/Scratch/en/contact/">Contact</a></li></ul>
</div>
<div class="flush"></div>
<hr/>
<div id="next_before_articles">
<div id="previous_articles">
previous entries
<div class="previous_article">
<a href="/Scratch/en/blog/11_Load_Disqus_Asynchronously/">&larr; Load Disqus Asynchronously</a>
</div>
<div class="previous_article">
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">&larr; Synchronize Custom WebSite with mobileMe</a>
</div>
<div class="previous_article">
2010-09-02 08:51:36 +00:00
<a href="/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/">&larr; Why I didn't keep whos.amung.us</a>
</div>
</div>
<div id="next_articles">
next entries
<div class="next_article">
<a href="/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/">jQuery Tag Cloud&rarr; </a>
</div>
<div class="next_article">
<a href="/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/">Disqus versus Intense Debate (Why I switched)&rarr; </a>
</div>
<div class="next_article">
<a href="/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/">How to preload your site with style&rarr; </a>
</div>
</div>
<div class="flush"></div>
</div>
</div>
<div id="bottom">
<div>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Copyright ©, Yann Esposito</a>
</div>
<div id="lastmod">
2010-08-31 13:06:43 +00:00
Created: 09/22/2009
2010-09-02 08:51:36 +00:00
Last modified: 05/09/2010
</div>
<div>
Entirely done with
<a href="http://www.vim.org">Vim</a>
and
<a href="http://nanoc.stoneship.org">nanoc</a>
</div>
<div>
<a href="/Scratch/en/validation/">Validation</a>
<a href="http://validator.w3.org/check?uri=referer"> [xhtml] </a>
.
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"> [css] </a>
.
<a href="http://validator.w3.org/feed/check.cgi?url=http%3A//yannesposito.com/Scratch/en/blog/feed/feed.xml">[rss]</a>
</div>
</div>
<div class="clear"></div>
</div>
</body>
</html>