ansible-string-split-filter
ansible-string-split-filter copied to clipboard
Simple Ansible Jinja2 filter to split a string into a list
Results
2
ansible-string-split-filter issues
Sort by
recently updated
recently updated
newest added
Hi @timraasveld , just to let you know I integrated your great `split` and `split_regex` functions into a broader list of filters: https://github.com/Sqooba/ansible-filter-plugins. I obviously mentioned your work in the...
Without `strip` we can get the last item with trailing characters: ``` ok: [localhost] => { "msg": "['aaa', 'bbb', 'ccc', 'ddd\\n']" } ``` `strip` removes leading and trailing characters and...