<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 <grin>.<br><div>Here is the javascript for #9.  </div><div><br></div><div>function myF(str) {<br>  var returnStr="";<br>  for (let i = 0; i < str.length; i++) {<br>     var c = str[i];  <br>     if((c >= 'A') && (c <= 'Z')) {           // Concatenate the next char only if it'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>