Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string like "SAB_bARGS_D" . What I want is that the string gets divided into list of characters but whenever there is a _ sign the next character gets appended to the previous one.

So the answer to above should be ['S','A','B_b','A','R','G','S_D']

It can be done by using a for loop traversing through the list but is there an inbuilt function that I can use.....

Thanks a lot


Update

Hello all

Thanks to Robert Rossney,aaronasterling I got the required answer but I have an exactly similar question that I am going to ask here only...... Lets say that now my string has critaria that it can have a letter or a letter followed by _ and a number..... How can I seperate the string into list now...... The solutions suggested cannot be used now since S_10 would be seperated into S_1 and 0 ...... It would be helpful if someone can tell how to do so using RE.... Thanks a lot....

share|improve this question
1  
I would think that a for loop would be optimal here. A list comprehension solution is essentially going to have to make at least two passes and be terrible for readability. – aaronasterling Dec 22 '10 at 12:35
1  
Can anyone show it can be done using a for loop? – user225312 Dec 22 '10 at 12:40
"SAB_b_ARGS_D" can this input possible? – Rozuur Dec 22 '10 at 13:12
No it cannot..... No letter is joined with _ on both sides – user506710 Dec 22 '10 at 13:31

3 Answers

up vote 5 down vote accepted

I know, I'll use regular expressions:

>>> import re
>>> pattern = "[^_]_[^_]|[^_]"
>>> re.findall(pattern, "SAB_bARGS_D", re.IGNORECASE)
['S', 'A', 'B_b', 'A', 'R', 'G', 'S_D']

The pattern tries to match 3 characters in a row - non-underscore, underscore, non-underscore - and, failing that, tries to match a non-underscore character.

share|improve this answer
Hey your answer was what I wanted .... but I have a question to ask.... Is using re better than the for loop suggestion given below in terms of complexity ??? As In I am not aware what re uses to check the pattern so does it lead to decrease in performance as compared to using normal loops..... Its a general doubt not specifically in just this search..... – user506710 Dec 22 '10 at 13:39
If you use timeit, you'll find that using re.findall in this case is marginally faster than using the function below - so marginally that I'd hazard a guess that the two are identical in complexity. Well, processing complexity. Code complexity is another matter. – Robert Rossney Dec 22 '10 at 16:02
Also, for your followup question, use the pattern [a-z]_[0-9]+|[a-z]. – Robert Rossney Dec 22 '10 at 16:07

I would probably use a for loop.

def a_split(inp_string):
    res = []
    if not inp_string: return res  # allows us to assume the string is nonempty

    # This avoids taking res[-1] when res is empty if the string starts with _
    # and simplifies the loop.
    inp = iter(inp_string)   
    last = next(inp)
    res.append(last)

    for c in inp:
        if '_' in (c, last): # might want to use (c == '_' or last == '_')
            res[-1] += c
        else:
            res.append(c)
        last = c
    return res

You will be able to get some performance gain my storing res.append in a local variable and referencing that directly instead of referencing a local variable, res and then performing an attribute lookup to get the append method.

If there is a string like 'a_b_c' then it will not be split. No behavior was specified in this case but it wouldn't be to hard to modify it to do something else. Also a string like '_ab' will split into ['_a', 'b'] and similarly for 'ab_'.

share|improve this answer
This has errors. – user225312 Dec 22 '10 at 12:59
@A A By errors, you of course mean typos which have since been fixed. Thanks for pointing. – aaronasterling Dec 22 '10 at 13:03

Using a regular expression

>>> import re
>>> s="SAB_bARGS_D"
>>> re.findall("(.(?:_.)?)",s)
['S', 'A', 'B_b', 'A', 'R', 'G', 'S_D']
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.