Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
637 views
in Technique[技术] by (71.8m points)

templates - How to list only item containing string X in a string Y from a dictionnary in Jinja2

I’m trying to obtain the count of all title containing a specific string from a dictionary in a jinja template.

I have tried many variant with select and other test and haven’t found the right way to do so. This is not for ansible for which I have found many solutions to fix this issue. Also the test equalto does not work since I do not have an exact match on the string and doesn’t seem to take regex.

{{ Dictionnary | selectattr("title", "in","MyString") | list | count }}

It seems that the string never gets properly evaluated because it always returns 0. The selectattr without test return the right number of total titles.

I wonder if we could evaluate it with an if statement somehow.

question from:https://stackoverflow.com/questions/65847448/how-to-list-only-item-containing-string-x-in-a-string-y-from-a-dictionnary-in-ji

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...