Could someone please give an example of how to use ling to query over a long string of text and find a substring within that string?
regards
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I wouldn’t use LINQ, I would use
String.Substring,String.IndexOf, or a regular expression.Can you post an example of the string you would like to search and an example of a substring you would like to find within that string?