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

I am newbie in python and facing some problem , my problem is that how to insert some fields in already existing string for example: suppose i have read one line from any file which contains:

line=Name Age Group Class Profession

now i have to insert 3rd Field(Group) 3 times more in the same line before Class field. it means output line should be:

output_line=Name Age Group Group Group Group Class Profession

i can retrieve 3rd field easily(using split method) but please let me know the easiest way of insertion in the string

share|improve this question

3 Answers

An important point that often bites new Python programmers but the other posters haven't made explicit is that strings in Python are immutable -- you can't ever modify them in place.

You need to retrain yourself when working with strings in Python so that instead of thinking, "How can I modify this string?" instead you're thinking "how can I create a new string that has some pieces from this one I've already gotten?"

share|improve this answer
+1 for mentioning the correct implementation. – Ankit Jaiswal Oct 26 '10 at 12:58
+1 Same Applies for Java. :) – st0le Oct 26 '10 at 13:00
line='Name Age Group Class Profession'
arr = line.split()
for i in range(3):
    arr.insert(2, arr[2])
print(' '.join(arr))
share|improve this answer

There are several ways to do this:

One way is to use slicing:

>>> a="line=Name Age Group Class Profession"
>>> b=a.split()
>>> b[2:2]=[b[2]]*3
>>> b
['line=Name', 'Age', 'Group', 'Group', 'Group', 'Group', 'Class', 'Profession']
>>> a=" ".join(b)
>>> a
'line=Name Age Group Group Group Group Class Profession'

Another would be to use regular expressions:

>>> import re
>>> a=re.sub(r"(\S+\s+\S+\s+)(\S+\s+)(.*)", r"\1\2\2\2\2\3", a)
>>> a
'line=Name Age Group Group Group Group Class Profession'
share|improve this answer

Your Answer

 
discard

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

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