| Compare strings, find position |
| Code |
| <pre>
AA="My friend John is from Cuba" BB="John" <% AA="My friend John is from Cuba"
In which position is located BB withing AA?(case sensitive)
|
| Resulting page |
| AA="john"
BB="John" Is BB a substring of AA?(case sensitive)
In which position is located BB withing AA?(case sensitive)
|
| Code |
| <pre>
AA="john" BB="John" <% AA="john"
Are AA and BB the same string?( no case sensitive)
|
| Resulting page |
| AA="john"
BB="John" Are AA and BB the same string?(case sensitive)
Are AA and BB the same string?(no case sensitive)
|
| Code |
| <pre>
AA="12345a6789" BB="345A" <% AA="12345a6789"
Which is the starting position of string BB within AA?(no case
sensitive)
|
| Resulting page |
| AA="12345a6789"
BB="345A" Which is the starting position of string BB within AA?(case sensitive)
Which is the starting position of string BB within AA?(no case
sensitive)
|
| Code |
| <pre>
AA="the cat is nice" BB="Cat" <% AA="the cat is nice"
Is BB a substring of AA?(no case sensitive)
|
| Resulting page |
| AA="the cat is nice"
BB="Cat" Is BB a substring of AA?(case sensitive)
Is BB a substring of AA?(no case sensitive)
|
Find position of a substrings within a string after skipping part of the string
| Code |
| <pre>
AA="12345A6789XXXXXX12345a678912345a678912345a678912345a678912345A6789"
<% AA="12345A6789XXXXXX12345a678912345a678912345a678912345a678912345A6789"
I know BB is included in the first 9 positions of AA, but it is included
in the rest of the string?(no case sensitive)
Is CC included in string AA after position 9?(no case sensitive)
|
| Resulting page |
| AA="12345A6789XXXXXX12345a678912345a678912345a678912345a678912345A6789"
BB="345A" CC="345B" I know BB is included in the first 9 positions of AA, but it is included
in the rest of the string?(case sensitive)
I know BB is included in the first 9 positions of AA, but it is included
in the rest of the string?(no case sensitive)
Is CC included in string AA after position 9?(no case sensitive)
|