Training, Open Source Programming Languages

This is page http://www.wellho.net/mouth/4549_.html

Our email: info@wellho.net • Phone: 01144 1225 708225

 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
Clarrissa-Marybelle - too long to really fit?

Would you christen your child Clarissa-MaryBelle? No, neither would I, but someone might - and there's a name that's so long it won't fit into boxes on forms.

When programming, there's a need to format things to line up, and in a ixed with font / plain text data file, that's done withspae pading - usinf the printf function, the % operator, or the .format method depending on your language. This week, I've been teaching Ruby and used the % operator therein.

Here's a first format - a fixed format using 10 character positions for the name:
  puts "A child called %-10s was born to them" % offspring

Of course, Clarissa-MaryBelle is going to stand out. Tthe "10" is a mimimum field width, so she won't be truncated though. But to get her all lined up, you can do better. A good solution is to search through all the names you need to output, and make up your format string using the longest that yu find.

The search:
  longest = 0
  family.each do |offspring|
    longest < offspring.length and longest = offspring.length
  end


and the print:
  puts "Child %2d called %#{longest}s was born to them" % [osn,offspring]
(which has an extra field too - the chld number - in the output)

Full example, including sample output, [here].
(written 2015-10-23)

 
Associated topics are indexed as below, or enter http://melksh.am/nnnn for individual articles
R109 - Ruby - Strings and Regular Expressions
  [970] String duplication - x in Perl, * in Python and Ruby - (2006-12-07)
  [986] puts - opposite of chomp in Ruby - (2006-12-15)
  [987] Ruby v Perl - interpollating variables - (2006-12-15)
  [1195] Regular Express Primer - (2007-05-20)
  [1305] Regular expressions made easy - building from components - (2007-08-16)
  [1588] String interpretation in Ruby - (2008-03-21)
  [1875] What are exceptions - Python based answer - (2008-11-08)
  [1887] Ruby Programming Course - Saturday and Sunday - (2008-11-16)
  [1891] Ruby to access web services - (2008-11-16)
  [2293] Regular Expressions in Ruby - (2009-07-16)
  [2295] The dog is not in trouble - (2009-07-17)
  [2608] Search and replace in Ruby - Ruby Regular Expressions - (2010-01-31)
  [2614] Neatly formatting results into a table - (2010-02-01)
  [2621] Ruby collections and strings - some new examples - (2010-02-03)
  [2623] Object Oriented Ruby - new examples - (2010-02-03)
  [2980] Ruby - examples of regular expressions, inheritance and polymorphism - (2010-10-02)
  [3424] Divide 10000 by 17. Do you get 588.235294117647, 588.24 or 588? - Ruby and PHP - (2011-09-08)
  [3621] Matching regular expressions, and substitutions, in Ruby - (2012-02-23)
  [3757] Ruby - a teaching example showing many of the language features in short but useful program - (2012-06-09)
  [3758] Ruby - standard operators are overloaded. Perl - they are not - (2012-06-09)
  [4388] Global Regular Expression matching in Ruby (using scan) - (2015-01-08)
  [4505] Regular Expressions for the petrified - in Ruby - (2015-06-03)


Back to
Melksham - two small townships, or one big one?
Previous and next
or
Horse's mouth home
Forward to
Build up classes into applications sharing data types in Ruby
Some other Articles
RUby - loading, using, changing, storing JSON format data
Scenario outlines - tables of values to test - in Gherkin / Cucumber
Testing your new class - first steps with cucumber
Build up classes into applications sharing data types in Ruby
Clarrissa-Marybelle - too long to really fit?
Melksham - two small townships, or one big one?
RUH Hopper - experience and thoughts forward
Is the RUH hopper a limited, duplicate service running unnecessarily and at high cost?
Method, Class, Module, Package - how to they relate in Python?
RSpec - Ruby testing (stand alone example / no cucumber)
4759 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/mouth/4549_.html • PAGE BUILT: Sun Oct 11 16:07:41 2020 • BUILD SYSTEM: JelliaJamb