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

Is there a way to get first part of a String before 4 numbers in ().

Input String: "Some Title (2000) some text."
Output String: "Some Title "

I don't want to iterate over matches and get first. I want regex to get the characters before 4 numbers in () and I want it to discard the rest of the text.

share|improve this question
2  
Have you tried anything? Can you show your attempts? Or are the SO community just going to do it for you? – Noel M Sep 15 '10 at 14:28

2 Answers

up vote 2 down vote accepted

The Regexp would be something like

(.*)\(\d{4}\).*

For usage in Java you need to escape backshlashes and the output string is at group 1.

share|improve this answer

For exactly this type of text:

String result = input.split("\\(")[0];

or, if ( may occur in the first part:

String result = input.split("\\(\\d{4}\\)")[0];

This even works for inputs containing no number at all and empty strings.

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.