in reply to Re^3: How to make changes in yaml file thorugh perl
in thread How to make changes in yaml file thorugh perl

YAML::XS's Load function turn a YAML string into a perl data structure. So you modify those like any other data structure i Perl. And then you call Dump to create a YAML string from it again.

Which part are you having trouble with?

Replies are listed 'Best First'.
Re^5: How to make changes in yaml file thorugh perl
by Anonymous Monk on Jul 13, 2012 at 12:12 UTC
    Yes that's working, after doing dump it's showing the changes but when I open .yaml file it is unchanged. I also want that .yaml file to be changed.
        Got it YAML::Tiny has methods like read and write which helps in editing yaml file on disk.