vote up 0 vote down star

Hi all, I want to check that Value1 below contains abc but only within the first X characters, how would you write the if statement to check for this?

Value1 = ddabcgghh

if (Value1.Contains(abc))
   {
       found = true;
   }

Thanks

PS It could be within the first 3,4 or 5 characters.

flag
Sorry guys I wasn't clear when I first posted, the value abc (this changes) maybe within the first X number of characters. E.g. 3,4,5 etc so StartsWith won't work for me. – Neil P Feb 1 at 16:06

8 Answers

vote up 13 vote down

Or if you need to set the value of found:

found = Value1.StartsWith("abc")

Edit: Given your edit, I would do something like:

found = Value1.Substring(0, 5).Contains("abc")
link|flag
vote up 5 vote down
if (Value1.StartsWith("abc")) { found = true; }
link|flag
I don't think that meets the requirements. – Will Feb 1 at 17:38
Isn't that the same as found = Value1.StartsWith("abc") ? – Jim Anderson Feb 2 at 2:06
@Will - true but as in all software projects the requirements have been changed since I had a go at it. @Jim - True but I kept the style of the author of question. – olle Feb 3 at 14:04
vote up 4 vote down

shorter version;

found = Value1.StartsWith("abc");

sorry, but I am a stickler for 'less' code.


Given the edit of the questioner I would actually go with something that accepted an offset, this may in fact be a Great place to an Extension method that overloads StartsWith

public static class StackOverflowExtensions
{
    public static bool StartsWith(this String val, string findString, int count)
    {
        return val.Substring(0, count).Contains(findString);
    }
}
link|flag
I think he wanted to match "1abcwhatever" and "xyabcwhatever" as well. – Will Feb 1 at 17:38
he changed that after most of us had written an answer – keithwarren7 Feb 1 at 17:44
vote up 2 vote down

You're close... but use: if (Value1.StartsWith("abc"))

link|flag
vote up 2 vote down

This is what you need :

if (Value1.StartsWith("abc"))
{
found = true;
}
link|flag
vote up 2 vote down

A more explicit version is

found = Value1.StartsWith("abc", StringComparison.Ordinal);

It's best to always explicitly list the particular comparison you are doing. The String class can be somewhat inconsistent with the type of comparisons that are used.

link|flag
vote up 2 vote down

Use IndexOf is easier and high performance.

int index = Value1.IndexOf("abc");
bool found = index >= 0 && index < x;
link|flag
vote up 0 vote down

You can also use regular expressions (less readable though)

string regex = "^.{0,7}abc";

System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(regex);
string Value1 = "sssddabcgghh";

Console.WriteLine(reg.Match(Value1).Success);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.