Got more questions? Find advice on: ASP | SQL | XML | Windows
Welcome to RegexAdvice Sign in | Join | Help

Search

You searched for the word(s):
< 1 second(s)
  • Matching especific note

    Hello, I have the following text: ---------------- text: &nbsp;&nbsp;&nbsp;&nbsp; E9/C&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A&nbsp;&nbsp;&nbsp; C&nbsp;&nbsp;&nbsp; E&nbsp;&nbsp;&nbsp; E/B&nbsp; Bb&nbsp;&nbsp; Cm6 &nbsp;&nbsp; Colhendo o vazio que eu plantei E&nbsp; G&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...
    Posted to Construction Advice (Forum) by rodrigozem on February 26, 2013
  • Re: how to distinguish a song liryc from a chord

    Susan, thank you for your attention!!! First I used a expression matching the lines containing the chords and then separated each chord in another expression. result: &gt;&gt; First expression (I put it between &lt;b&gt; ...
    Posted to Construction Advice (Forum) by rodrigozem on July 17, 2012
  • how to distinguish a song liryc from a chord

    Regex: (?&lt;=^|\s)[A-G](?:\x23|[2-9]|\x2F|maj|add|m(?!\s))?(?:\x2B|M|m|\[A-G]|\x28[2-9]\x29|[2-9])?(?:[2-9]|\x28[2-9]\x29)?(?:[2-9]|\x28[2-9]\x29)?(?=\s|$) I&#39;ve used the regex above to match this song. The problem: it&#39;s matching part of the lyric on the last line; &quot;Em&quot; is a chord, but in portuguese can mean a word and it can ...
    Posted to Construction Advice (Forum) by rodrigozem on July 16, 2012
  • Re: searching for chords

    Hello!!!! This code is the way I want!!!! I only modified adding some letters to match dim and maj @(\r\n\s*(?:(?:\[.*?\])|(?:\(.*?\))|(?:INTRO|Verse|Introdu&ccedil;&atilde;o|INT|OUTRO|SOLO|OUT|FINAL|INTERL&Uacute;DIO|[INT] -&gt;|TOM|CHORUS|PONTE))?):?(?:\s+-&gt;)?([~;%*\x20\t#+\/\|\[\]&gt;\d:A-GdimajPRSUuX\xB0\xBA()\.-]+)(?=\r\n|$)@is &lt;link ...
    Posted to Construction Advice (Forum) by rodrigozem on January 14, 2008
  • Re: searching for chords

    ddrudik, This source would first match&nbsp;the intro of the song.(D7+ F#m7 E/G#) Bm7 is&nbsp;the beginning of the song E/G# is one match, &#39;cause E is the first note followed by a slash and the other note(bass note),&nbsp;G# that would make up&nbsp;this chord. The language I&#39;m using is PHP. One of my objectives with this is to alternate ...
    Posted to Construction Advice (Forum) by rodrigozem on January 13, 2008
  • Re: searching for chords

    Intro:&nbsp;&nbsp; E&nbsp;&nbsp;&nbsp;&nbsp; A9 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A9&nbsp; Eu fa&ccedil;o parte de um novo tempo&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...
    Posted to Construction Advice (Forum) by rodrigozem on January 10, 2008
  • Re: searching for chords

    Below are a list of a great number of chords. Always the first string is gonna be [A-G], ok? and then may be followed by [1-9][11][13] or m(=minor) or + or aug or sus(=suspense)&nbsp;or # or #m or&nbsp;&ordm; or b, etc... A A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or&nbsp;&nbsp; A maior&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...
    Posted to Construction Advice (Forum) by rodrigozem on January 9, 2008
  • Re: searching for chords

    Posted to Construction Advice (Forum) by rodrigozem on January 9, 2008
  • Re: searching for chords

    I&#39;m using php (preg_replace), so I think it&#39;s PCRE flavor. This expression you sent is ok, but as I live in Brazil, the lyrics in Portuguese there are some words like &quot;Em&quot; that means &quot;In&quot; in english or &quot;Um&quot; that means &quot;A&quot; or &quot;E&quot; that means &quot;AND&quot;. The lyrics also comes in capital ...
    Posted to Construction Advice (Forum) by rodrigozem on January 8, 2008
  • searching for chords

    Could&nbsp;someone&nbsp;help with this expression?&nbsp; ([A-G].[A-Z]?|\b[A-G](m)[^h-z]|.*(tom|TOM[^a-zA-Z]|INT[^a-zA-Z]|int[^a-zA-Z])|(?(?&lt;=[a-gA-G])(\b[A-Ga-g]|sus\s|m[1-9]|m\s|aug\s|#|&deg;|/|dim|[1-9]|\x2B))) I would like&nbsp;to match only the&nbsp;chords above&nbsp;the ...
    Posted to Construction Advice (Forum) by rodrigozem on January 3, 2008