gpt4 book ai didi

php 正则表达式吉他标签(标签或指法,一种音乐符号)

转载 作者:可可西里 更新时间:2023-11-01 13:20:20 38 4
gpt4 key购买 nike

我正在用 PHP 创建吉他乐谱到 rtttl(铃声文本传输语言)的转换器。为了准备一个用于 rtttl 转换的吉他谱,我首先去掉所有注释(注释以 #- 注释并以 -# 结尾),然后我有几行设置速度,注意调音并定义多个乐器(Tempo 120\nDefine Guitar 1\nDefine Bass 1, etc etc) 从选项卡中剥离并放在一边以备后用。

现在我基本上除了吉他谱什么都没有了。每个选项卡都以其仪器名称作为前缀,并结合之前记录的仪器名称。

有时我们有 2 个链接的独立乐器的选项卡,因为它们要一起演奏,即吉他和低音吉他一起演奏。

示例 1,标准吉他选项卡:

 |Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|

示例 2,连词选项卡:

 |Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|
|
|
|Bass 1
G|----------0-------0-----------0-------0--------|
D|--------2-----------2-------2-----------2------|
A|------3---------------3---3---------------3----|
E|----3-------------------3-------------------3--|

我已经考虑过其他方法来识别没有可靠结果的选项卡。我希望做正则表达式的人可以帮助我找到一种方法来识别单个吉他谱,如果可能的话,还可以将一个谱与链接在一起的多种乐器相匹配。

一旦选项卡在一个数组中,我将一次一行地浏览它们并将它们转换为 rtttl 行(在每个新行“\n”处展开)。

我不想通过爆炸“\n\n”或类似的东西分隔文档中的吉他标签,因为它不识别吉他标签,而是识别标签之间的空间 - 而不是标签上的空间他们自己。

我已经搞砸了大约一个星期了,这是我遇到的唯一重大阻碍。其他一切都相当简单。

截至目前,我已经尝试了正则表达式模式的多种变体。这是最新的测试样本之一:

<?php
$t = "
|Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|

|Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|
|
|
|Bass 1
G|----------0-------0-----------0-------0--------|
D|--------2-----------2-------2-----------2------|
A|------3---------------3---3---------------3----|
E|----3-------------------3-------------------3--|

";

preg_match_all("/^.*?(\\|).*?(\\|)/is",$t,$p);
print_r($p);

?>

还值得注意的是,在选项卡内,破折号和 # 所在的位置,您可能还会有字母、数字和标点符号的任何变体。每行的开头使用以下不区分大小写之一标记每个字符串的调音:a、a#、b、c、c#、d、d#、e、f、f#、g 或 g。

在此先感谢您帮助解决这个最困难的问题。

最佳答案

我真的很喜欢这个问题:-P。我很高兴弄清楚这个。
这是我得到的:

<?php
$t = <<<EOD
|Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|

|Guitar 1
e|--------------3-------------------3------------|
B|------------3---3---------------3---3----------|
G|----------0-------0-----------0-------0--------|
D|--------0-----------0-------0-----------0------|
A|------2---------------2---2---------------2----|
E|----3-------------------3-------------------3--|
|
|
|Bass 1
G|----------0-------0-----------0-------0--------|
D|--------2-----------2-------2-----------2------|
A|------3---------------3---3---------------3----|
E|----3-------------------3-------------------3--|

EOD;


GetTabs($t);

function GetTabs($tabString) {
$tabs = array();
$tabcount = 0;
$instrumentcount = 0;
$tabline = 0;

$tabStringArray = explode("\n", $tabString);

foreach ($tabStringArray as $tabStringRow) {

if (preg_match ('/^(?<snaretuningprefix>[bgdaeBGDAE#])+\|(?<tabline>[0-9-]+)\|/', $tabStringRow)) {
//Matches a tab line
//The tabline group can be expanded with characters for hammer on's, pull off's and whatnot
$tabs[$tabcount][$instrumentcount-1][$tabline] = $tabStringRow;
$tabline++;
continue;
}

if (preg_match ('/^\s\|\s+/', $tabStringRow, $matches)) {
//Matches ' |'
//Continuation of tab do nothing
continue;
}

if (preg_match ('/^\s\|(?<instrument>[A-z0-9\s]+)/', $tabStringRow, $matches)) {
//Matches an instrument line ' |Guitar 1'

$tabs[$tabcount][$instrumentcount]['instrumentname'] = $matches['instrument'];
$instrumentcount++;
$tabline = 0;
continue;
}

if (preg_match ('/^\s+/', $tabStringRow)) {
//Matches empty line
//new tab

$tabcount++;
$instrumentcount = 0;

continue;
}

}

print_r($tabs);
}


?>

该函数有一些注释,我认为它并不难读。
这输出:

Array
(
[0] => Array
(
[0] => Array
(
[instrumentname] => Guitar 1
[0] => e|--------------3-------------------3------------|
[1] => B|------------3---3---------------3---3----------|
[2] => G|----------0-------0-----------0-------0--------|
[3] => D|--------0-----------0-------0-----------0------|
[4] => A|------2---------------2---2---------------2----|
[5] => E|----3-------------------3-------------------3--|
)

)

[1] => Array
(
[0] => Array
(
[instrumentname] => Guitar 1
[0] => e|--------------3-------------------3------------|
[1] => B|------------3---3---------------3---3----------|
[2] => G|----------0-------0-----------0-------0--------|
[3] => D|--------0-----------0-------0-----------0------|
[4] => A|------2---------------2---2---------------2----|
[5] => E|----3-------------------3-------------------3--|
)

[1] => Array
(
[instrumentname] => Bass 1
[0] => G|----------0-------0-----------0-------0--------|
[1] => D|--------2-----------2-------2-----------2------|
[2] => A|------3---------------3---3---------------3----|
[3] => E|----3-------------------3-------------------3--|
)

)

)

关于php 正则表达式吉他标签(标签或指法,一种音乐符号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2968539/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com