Good afternoon, how can I check for the presence of a word from an array in a string? eg:
string dwords = "h|w|l|o"; boolean contains = "Hello World".Contains(dwords.split("|")); ?
Good afternoon, how can I check for the presence of a word from an array in a string? eg:
string dwords = "h|w|l|o"; boolean contains = "Hello World".Contains(dwords.split("|")); ?
Source: https://ru.stackoverflow.com/questions/382380/
All Articles