在React native中解析Chordpro

时间:2017-12-28 15:25:30

标签: android parsing react-native chord


我想在我的应用程序中编辑chordpro文件。问题是:如何在歌词上显示和弦(完全!)
我试图用var text = "Lorem ipsum dolor *https://www.google.com/* amet, *https://www.google.com/*"; var arrtext=text.split('*'); var newtext=''; for(var i=0;i<arrtext.length;i++){ if(arrtext[i].startsWith("http")){ var link='<a href="'+arrtext[i]+'">'+arrtext[i]+'</a>'; newtext=newtext+link; }else{ newtext=newtext+arrtext[i]; } } 来定位和弦。但它在React Native中并没有真正起作用。当然,我可以使用HTML语法(react-native-htmlview)。但我认为这不是最优雅的解决方案。
也许某人有办法解决问题?

ChordPro语法。

position: absolute

输出

{title: Swing Low Sweet Chariot}

[Chorus]
Swing [D]low, sweet [G]chari[D]ot,
Comin’ for to carry me [A7]home.

0 个答案:

没有答案