Count characters from end of a string to front
Hi guys. Is there any option to count the characters in a string to a specific length from back to front, for example I have a string that says Hello but want to count the characters up to the letter "e", meaning "llo" that equals 3. Which method should this be. Thank you.Solved2.4KViews0likes6Commentsregular expressions in property checkpoint
Hi everybody, I have an issue with regular expression in property checkpoints. I want to comparea string. In this stringthere's the current daytime. So to compare this string I need to substitute the daytime with a regular expression. Here's my string: 18:23:45 - test123 This is my regular expression to compare the string: \d\d:\d\d:\d\d - test123 So, this works just fine! My problem is, when I try to compare a string with two or more lines, like this: 18:23:45 - test123 18:23:52 - test456 This expression won't work in TestComplete: \d\d:\d\d:\d\d - test123 \d\d:\d\d:\d\d - test456 I just don't know why this won't work. any ideas? Thanks!Solved1.6KViews0likes1Comment