How do you convert a string to lowercase in gnuplot?
This is a gnuplot string handling question.
Example:- I wish to check a user typed parameter in a gnuplot script....
if (tolower(ARG2) == "ohms") {.....
so by accepting "ohms", "Ohms", or "OHMS".
The preference is to not need to use an external "system" command so that the script is more portable. My current best solution is
arg2 = system("awk 'BEGIN { print toupper(\"".ARG2."\") }'")
and then test the new string variable "arg2", but awk (or other program) may not be generally available on a non unix system, making the gnuplot script less portable.
I cannot see any enhanced gprintf % format specifiers that modifies string presentation - it seems gprintf is only for converting values.
The full function Macro solution (Thanks theozh) has me thinking again of how to implement this as a function. The idea of using a lookup table to convert characters by equating an ordinal number was a great idea. Encapsulating single character case conversion into a function was the start, and then along with recursion, it has made it possible to handle full strings as I had first looked for. I hope this is now a tidy solution for all. Share and enjoy.
Addition: Improved solution
This is a re-work of the recursive case conversion as self contained functions. A little more effort has resolved the excessive stack usage of the first solution. I had only been considering strings of single words when I had the problem. Note:- the single character conversion has been made more robust.