Working with strings Suggest EditsString containment If you'd like to check if your string contains a particular substring, you can use the in containment operator: {% if "x" in cons.name %} You have an x in your name. How cool is that? {% endif %} Updated less than a minute ago Table of Contents String containment