Re: [Puppet Users] Number of characters in string/variable

2012-07-10 Thread jkuskowski
Sweet thanks man!!! On Monday, July 9, 2012 2:43:59 PM UTC-4, Darren Chamberlain wrote: > > $ cat var_l.pp > $var = "i like pie" > $var_l = inline_template("<%= var.length %>") > notice("'$var' is $var_l characters long") > > $ puppet var_l.pp > notice: Scope(Class[main]): 'i like pie' is 10

Re: [Puppet Users] Number of characters in string/variable

2012-07-09 Thread Darren Chamberlain
$ cat var_l.pp $var = "i like pie" $var_l = inline_template("<%= var.length %>") notice("'$var' is $var_l characters long") $ puppet var_l.pp notice: Scope(Class[main]): 'i like pie' is 10 characters long * jkuskowski [2012/07/09 06:59]: > I'm looking for a way to determine the number of charact

[Puppet Users] Number of characters in string/variable

2012-07-09 Thread jkuskowski
I'm looking for a way to determine the number of characters in a string/variable. I've tested some of the ruby length functions, but no luck. Has anyone done this before? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussio