# How to put a capital letter in the beginning of sentence without the button of shortcut?

**URL:** https://community.mp3tag.de/t/how-to-put-a-capital-letter-in-the-beginning-of-sentence-without-the-button-of-shortcut/16302
**Category:** General Discussion
**Created:** [November 7, 2014, 11:39pm UTC](https://community.mp3tag.de/t/how-to-put-a-capital-letter-in-the-beginning-of-sentence-without-the-button-of-shortcut/16302 "2014-11-07T23:39:52Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![ohrenkino](https://community.mp3tag.de/user_avatar/community.mp3tag.de/ohrenkino/32/4843_2.png) [@ohrenkino](https://community.mp3tag.de/u/ohrenkino)
#### Post date: [November 9, 2014, 8:30am UTC](https://community.mp3tag.de/t/how-to-put-a-capital-letter-in-the-beginning-of-sentence-without-the-button-of-shortcut/16302/7 "2014-11-09T08:30:32Z")

</div>

> [@Victor Kostas](#):
>
> Action: Replace with regular expresion  
> Regular expression: (?:(?\<=\s-\s)|^)(.\*?)(?=$|\s-\s)  
> Replace with: $caps3($1)  
> It works. Idea is to find all substrings starting after ' - ' or beginning of string and ending on ' - ' or end of string.

The problem with the case conversion and the list of characters as word delimiters is that only a single letter gets evaluated.  
So, ' - ' is actually 3 letters with twice the same: the space.  
And as the space also appears between the words all words get a capital letter. So the usual case conversions do not work.

But as the case conversion in general seems to be rather homespun, I would like to divert your attention to a thread that deals with the English conventions:

[Natural Mixed Case and Natural MixedLower Case](https://community.mp3tag.de/t/15863/1)

---

_[View the full topic](https://community.mp3tag.de/t/how-to-put-a-capital-letter-in-the-beginning-of-sentence-without-the-button-of-shortcut/16302)._
