Read array element and convert into string

100 Views Asked by At
if (RARRAY_LEN(arr) > 0) 
   {
     VALUE str = rb_ary_entry(arr, 0);
     abc = some_method(*str);
   }

rb_ary_entry(arr, 0) gives me an index value. Then I want to convert that value to a string so I can pass it to the next method. I tried:

rb_str_new2(rb_ary_entry(arr, 0));

but I get error saying:

error: indirection requires pointer operand `('VALUE' (aka 'unsigned long')` `invalid`)`
`ipDict = some_method(*str)`;
1

There are 1 best solutions below

0
On BEST ANSWER

Use the StringValueCStr macro to convert a Ruby String into a char* (the rb_str_new functions are for converting in the other direction).

VALUE str = rb_ary_entry(arr, 0); // str is now a Ruby String
char *c_str = StringValueCStr(str);

abc = some_method(c_str);