How I can check whether a given string contains a certain substring, using Perl?
More specifically, I want to see whether s1.domain.com is present in the given string variable: if so, just have 1 section; if not, have another.
|
How I can check whether a given string contains a certain substring, using Perl? More specifically, I want to see whether |
|||||
|
|
You can use the
|
|||
|
|
Another possibility is to use regular expressions which is what Perl is famous for:
The backslashes are needed because a
Or, you can do as eugene y stated and use the index function.
Just a word of warning: Index returns a Thus, this is an error:
This will be wrong if |
|||
|
|