<div dir="ltr">Here is <a href="https://docs.google.com/spreadsheets/d/1OFoQq69r5HlJ1udis0htAQqiEsLxvUcoZu9iSEuAeH0/edit?usp=sharing">my answer</a> to Jims challenge in google sheets + a bit of javascript in google apps<div>I spent days seeing how to do this in forth language, but gave in to my weaker self...  <br></div><div><div><br></div><div>My inputs are limited to 26 numbers.  Well, everyone has their limits &lt;grin&gt;.<br><div>Here is the javascript for #9.  </div><div><br></div><div>function myF(str) {<br>  var returnStr=&quot;&quot;;<br>  for (let i = 0; i &lt; str.length; i++) {<br>     var c = str[i];  <br>     if((c &gt;= &#39;A&#39;) &amp;&amp; (c &lt;= &#39;Z&#39;)) {           // Concatenate the next char only if it&#39;s a capital letter.<br>       returnStr=returnStr+c;<br>     }</div><div>  }<br>  return returnStr;<br>}</div><div><br></div><div>I couldnt understand question 5.<br clear="all"><div><br></div><div></div>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>George Bowden, <br><a href="mailto:gtbowdeng@gmail.com" target="_blank">gtbowdeng@gmail.com</a></div></div></div></div></div></div></div>