A customer journey specialist wants to check if the pattern "es" exist in the attribute "profile.homeAddress.city".
The helper function the specialist is considering need to be able to determine if a string matches a specified pattern
It is known that % can be used to represent zero or more characters in a string.
Which expression meets the requirements?
A. { %= matches(profile.homeAddress.city,"%es%") %}
B. { %= contains(profile.homeAddress.city,"%es%") %}
C. { %= like(profile.homeAddress.city, "%es%")%}
D. { %= includes(profile.homeAddress.city, "%es%") %}