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

I'm trying to replace a part of a string. The part contains some special characters:

#L(inches)=24#

I know replaceFirst is regex driven but I can't seem to create a regular expression that matches this part in a string, any ideas?

share|improve this question
1  
I'm not sure, but I think maybe some markup got translated? Can you say what you want to replace in a more general way? Is it "on any line that begins with "#" and also has another "#", replace everything from one "#" to the other with an unrelated string? – Ed Staub Jul 1 '11 at 16:37
Sean gave me a solution below. – soren.qvist Jul 1 '11 at 16:42

1 Answer

up vote 1 down vote accepted
#.*?#

This should match the entire String above.

share|improve this answer
This works like a charm, thank you – soren.qvist Jul 1 '11 at 16:42

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.