如何解析<Sup>标签并在React Native中获取值

时间:2019-07-18 10:11:03

标签: javascript regex react-native react-native-flatlist superscript

我从服务器获取json数据,因为我正在获取特定键的超级脚本标签。像下面一样

"desc": "the month<sup>1</sup>",

这就像字典数组中的多个数据。我正在Flatlist中显示此数据。

我试图按照以下说明在用户界面中进行显示。

    var description = get(item, 'desc');
    var superscript = '';
    if (get(item, 'desc').contains('<sup>1')) {
      var regex = /[\u2070-\u209f\u00b0-\u00be]+/g; 
      superscript = '';
      tradingFrequencyDesc = description.replace(regex, superscript);
      superscript = '1'; //here hardcoded, But, How to get it from dynamic <sup> tag value
}

但是,它崩溃了,并且显示contains是不确定的。

有什么建议吗?

enter image description here

0 个答案:

没有答案