vote up 1 vote down star

I know I can loop over the string or build a regex or invert the set (ASCII isn't that big after all) and search for the first instance of that, but Yuck.

What I'm looking for is a nice one liner.

fewer features is better, LINQ is out (for me, don't ask, it's a long story)


The solution I'm going with (unless I see something better)

static int FirstNotMeta(int i, string str)
{
    for(; i < str.Length; i++)
        switch(str[i])
        {
            case '\\':
            case '/':
            case '.':
                continue;
            default:
                return i;
        }
    return -1;
}

OK, I cheated, I know in advance what char's I care about.

flag

50% accept rate
I like long stories... Tell! =) – Erik Nov 19 '08 at 0:48
The app needs to run on Linux without mono, so I'm also doing an auto translation to a language that doesn't need mono. Oh, boy am I having fun! Really, I am! – BCS Nov 19 '08 at 1:00
Should have said you want the index and not the character. – Robert Wagner Nov 19 '08 at 1:33

4 Answers

vote up 5 vote down check

This works:

public static char FindFirstNotAny(this string value, params char[] charset)
{
    return value.TrimStart(charset)[0];
}
link|flag
That's quite nest! (edited to add static keyword) – Mitch Wheat Nov 19 '08 at 0:54
Very nest indeed, whatever that means. =P – Erik Nov 19 '08 at 1:01
"nest": a word describing the condition of having bad aim on key boards and thinking something is cool – BCS Nov 19 '08 at 1:05
lol, I meant 'neat' but I can't type for toffee! – Mitch Wheat Nov 19 '08 at 1:14
@BCS: I should have read all the way to the end of your definition! nice one! i..e very nest – Mitch Wheat Nov 19 '08 at 1:15
show 1 more comment
vote up 1 vote down

Not all that efficient, but:

char f(string str, IEnumerable<char> list)
{
  return str.ToCharArray().First(c => !list.Contains(c))
}
link|flag
Lambdas!! to bad I can't use them. +1 anyway – BCS Nov 19 '08 at 0:44
Won't this return the value of the first char, not the index? – Jacksonh Feb 3 at 18:37
vote up 1 vote down

If you don't have access to LINQ, I think you may just have to write a static method with a loop (which is probably more efficient than LINQ anyway. Remember the compiler will inline small methods when possible.

The simplest non-LINQ I can come up with is below. I recommend adding braces so scope and the blocks are clear:

public static char? GetFirstChar(string str, char[] list)
{
    foreach (char c in str) if (!list.Contains(c)) return c;
    return null;
}

With C# 3.0 and LINQ:

char[] list = { 'A', 'B' };
string str = "AABAGAF";

char first = str.ToArray().Where(c => !list.Contains(c)).FirstOrDefault();

In that case, if there is no non-list character, first will equal 0x0000 (or the character null). You could do this:

char? first = str.ToArray().Cast<char?>().Where(
    c => !list.Contains(c.Value)).FirstOrDefault();

Then first will be null if there are no matches. This can also be written as:

var query = from char c in str
            where !list.Contains(c)
            select (char?)c;
char? first = query.FirstOrDefault();
link|flag
corrected the syntax of List constructor ... – Mitch Wheat Nov 19 '08 at 0:42
Thanks Mitch. Should take the time to actually test it :P. – Robert Wagner Nov 19 '08 at 0:45
vote up 0 vote down

Will this C/C++ example work for you:

char *strToSearch = "This is the one liner you want"
char *skipChars = "Tthise";
size_f numToSkip = strcspn(strToSearch, skipChars);

The strcspn() function scans a string for the complement of the specified set. It returns the number of initial characters that do not include a character in the set.

link|flag
It'd seem the code behind strcspn would be what's needed...GPL version: google.com/codesearch?hl=en&q=strcspn()+show:… – Mark Brackett Nov 19 '08 at 1:14
@Mark: Thanks for the assist! – Adam Liss Nov 19 '08 at 1:37
actually, that would do exactly what I need... if it was c# :( Oh well, maybe someone else can use it. – BCS Nov 19 '08 at 6:54

Your Answer

Get an OpenID
or

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