Hi,
I have to check if string contains a substring that has 18 numbers. I tried with is Match but with no result.
String Example:
Test test 111111111111111111 test test
Hi,
I have to check if string contains a substring that has 18 numbers. I tried with is Match but with no result.
String Example:
Test test 111111111111111111 test test
@camaro123 You can use regex.ismatch so it will give Boolean result
System.Text.RegularExpressions.Regex.IsMatch(str_PdfResult,“(\d{18})”).ToString
Hi thanks. Do You know how to do same thing for date with pattern DD-MM-YYYY ?
Do you want identify date from string?
actually I need also the bool if it exist in the string
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.