I am looking for a regular expression which matches a specific string which:
- always start with
"fu: - always ends with
" - and contains at least one capital letter in between those start and ending points
point 3 is the part I really can't solve.
the regex "fu:(.*)?" matches all the strings apart from point 3.
[edit]
its pretty close now, the only problem is it doesnt stop after the second ".
Basically this string:
"fu:no capital letter:,some other random text WITH CAPITAL LETTERS"
is a match but shouldnt.
[A-Z]will match a capital case letter. – Vikas May 31 '12 at 9:06