in reply to Re^5: Using Config::IniFiles Module Obtain Comma Separated Values into An Array
in thread Using Config::IniFiles Module Obtain Comma Separated Values into An Array

Thank you for your time,

I cannot do this.
I cannot use split or regex or anything other than the module's inbuilt function as i mentioned on the top of the Link's description.

I am really close to the solution.

I just need to make a modification on my config file.

Thank you for going through the trouble of coding it here.

Appreciate it a lot.
  • Comment on Re^6: Using Config::IniFiles Module Obtain Comma Separated Values into An Array

Replies are listed 'Best First'.
Re^7: Using Config::IniFiles Module Obtain Comma Separated Values into An Array
by hippo (Archbishop) on May 27, 2016 at 10:24 UTC
    I cannot use split or regex or anything other than the module's inbuilt function as i mentioned on the top of the Link's description.

    That is clearly in contradiction to the code which you posted in the root of this thread:

    tie %ini,'Config::IniFiles', (-file=>$sample); #... print "$_\n",for(@arr);

    Here you have used tie, print and for, none of which are the module's inbuilt functions. You have failed to meet your own arbitrary restrictions. Game over, player 1.

    A reply falls below the community's threshold of quality. You may see it by logging in.