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

I look for function that replace string. example:

name = asasasasa
Simon = asds

return:

name
Simon

Thx

share|improve this question
1  
.............. wut? – mkoryak Jun 16 '11 at 15:07
That means remove everything after the =? My first action would be to use Google: encrypted.google.com/search?q=python+string+replace – Felix Kling Jun 16 '11 at 15:07
1  
Please, give us more clue, and code examples for what you're trying to do. – utdemir Jun 16 '11 at 15:08
2  
Extra points to anyone who undestood the question – Karoly Horvath Jun 16 '11 at 15:08
Replace a string with what? In Python strings are immutable, so you can't change a string without making a copy of it. However you can reassign the variable to a new string at any point in time. – machine yearning Jun 16 '11 at 15:11

closed as not a real question by Bill the Lizard Jun 16 '11 at 15:15

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Hard to tell exactly what you are looking for, but perhaps something like:

line = "key = value"
key = line.split(" = ")[0]

That code above will return "key"

share|improve this answer
Yeah, I guess that could be the question :) – Trufa Jun 16 '11 at 15:15

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