markeh wrote:Any way of turning this off, just for these two changes??
Sorry, it is not possible. You could turn on/off confirmation only for all presets.

markeh wrote:Any way of turning this off, just for these two changes??
([\w\xDF-\xF6])((?:[^.](?!\b(?:Sverige|Åre)\b))*)[\b\xDF-\xF6]\(remix|remix|remix\)\b(single|edit|remix|mix)\b|LCase("$1") & LCase("$2") & UCase("$3") & UCase("$4") & LCase("$5")RobertSmith wrote:I have modified Uppercase English "I" and the first letter of each line or sentence of the Lyricsand it works as long as I don't have exceptions word starting with ÅÄÖ
- Code: Select all
([\w\xDF-\xF6])((?:[^.](?!\b(?:Sverige|Åre)\b))*)
([\w\xDF-\xF6])((?:(?[^\w\xDF-\xF6])[^.!?\r\n])*)ZvezdanD wrote:markeh wrote:Any way of turning this off, just for these two changes??
Sorry, it is not possible. You could turn on/off confirmation only for all presets.
Thy! I have been reeding more from the site you recommended and I have dl RegexBuddy but I still found it complicated...ZvezdanD wrote:Here is an expression for your example:
- Code: Select all
([\w\xDF-\xF6])((?:(?[^\w\xDF-\xF6])[^.!?\r\n])*)
(\b(?:AB|UK)\b|[\w\xBF-\xF6])((?:(?[^\w\xBF-\xF6]).)*)RobertSmith wrote:Thy! I have been reeding more from the site you recommended and I have dl RegexBuddy but I still found it complicated...ZvezdanD wrote:Here is an expression for your example:
- Code: Select all
([\w\xDF-\xF6])((?:(?[^\w\xDF-\xF6])[^.!?\r\n])*)
I'm looking for a RegExp to use on title where only the first character in the title should be capitalized. But there are exceptions when using names or places or abbreviation like UK, AB or ÅÄÖ.
This code works OK if I write abbreviations on two places (ÅÄÖ doesn't work,\w works with ext. ASCII, \b only works for 0-127 ?). I think I understand how it works, the only way to stop the 2nd loop is to put in UK|AB|ABC|ÅÄÖ. I guess it could be done in a way there it is enough to specify exceptions word only ones. I have tried many different way, but so far no success, pls helpI don't know if you are using RegExpBuddy but I have to begin extended ASCII at xBF (include uppercase letters), if I start with xDF and RegExp flavor = JavaScript/VBScript it wont work
- Code: Select all
(\b(?:AB|UK|ÅÄÖ|ABC)\b|[\w\xBF-\xF6])((?:(?!\s(?:AB|UK|Sverige|Åre|ÅÄÖ|ABC)\s).)*)
RobertSmith wrote:I'm looking for a RegExp to use on title where only the first character in the title should be capitalized. But there are exceptions when using names or places, abbreviation like UK or AB.
This code works if I write abbreviations on two places. I think I understand how it works, the only way to stop the 2nd loop is to put in UK|AB. I guess it could be done in a way there it is enough to specify exceptions word only ones. I have tried many different way, but so far no success, pls help
- Code: Select all
(\b(?:AB|UK)\b|[\w\xBF-\xF6])((?:(?[^\w\xBF-\xF6]).)*)
RobertSmith wrote:I don't know if you are using RegExpBuddy but I have to begin extended ASCII at xBF (include uppercase letters), if I start with xDF and RegExp flavor = JavaScript/VBScript it wont work
mk1065 wrote:Find what in Artist field:
1. Artist (ft. Artist)
2. Artist & Artist
3. Artist, Artist & Artist
4. Artist, Artist, Artist & Artist
Replace with in Title field:
1. Title (ft. Artist)
2. Title (ft. Artist)
3. Title (ft. Artist & Artist)
4. Title (ft. Artist, Artist & Artist)
^([^,&]+?)\s?[,&]\s?$1 ft. ((?:^|[\s(])(?:DJ|E\.M\.D|UK|USA)(?=[)\s]|$))|(^.)|((?=[\s(](?:London|Sverige|John|Doe)(?:[)\s]|$))..)|([\w\u00DF-\u00F6\u00F8-\u00FF\u0100-\u024F\u0400-\u04FF]*)UCase("$1") & UCase("$2") & UCase("$3") & LCase("$4")RobertSmith wrote:So here is my first contribution:
ThyZvezdanD wrote:Wow! I am not so sure, but I think you are the fist person who contributed with some preset. It is also very good one, indeed. Congratulations!
([\s(](?:as?|and?|at|but|by|cum|for|from|in|into|mid|nor|off?|on|onto|or|per|qua|re|the|to|via|with|o'|'n'|n'|edit|radio|remix|mix|version|feat\.|pres\.|vs\.|del?|des|du|el|las?|les?|los)(?=[)\s]))|(\b(?:III?|DJ|UK|USA))\b|([\w\xDF-\xF6\xF8-\xFF\u0100-\u024F\u0400-\u04FF])([\w'\xDF-\xF6\xF8-\xFF\u0100-\u024F\u0400-\u04FF]*)mk1065 wrote:your music collection must be in tip-top shape
Users browsing this forum: No registered users and 20 guests