如何在 React Native 中将字符串转换为数组

Posted

技术标签:

【中文标题】如何在 React Native 中将字符串转换为数组【英文标题】:How to covert String into array in React Native 【发布时间】:2017-09-07 13:41:10 【问题描述】:

如何在 React Native 中将 String 转换为数组。 例如:-

var myString = 'this, is my, string';

","分隔字符串 并且输出必须是

  myArray = [this, is my, string];
  on myArray[0] value is "this",
  on myArray[1] value is " is my",
  on myArray[2] value is " string"

【问题讨论】:

myString.split(',') 【参考方案1】:

只需使用string.split() 将字符串拆分为一个数组,并使用逗号作为分隔符。

var myArray = myString.split(',');

【讨论】:

没问题 :) 很高兴我能帮上忙。 如果您满意,请将其标记为您问题的答案;)【参考方案2】:

var myString = 'this, is my, string';

console.log(myString.split(','));

【讨论】:

【参考方案3】:

这是我的例子

var oldString = 'this, is my, string';
var mynewarray=oldString.split(',')
console.log("My New Array Output is",mynewarray);

然后这样输出

My New Array Output is [ 'this', ' is my', ' string' ]

【讨论】:

以上是关于如何在 React Native 中将字符串转换为数组的主要内容,如果未能解决你的问题,请参考以下文章

在 React Native 中将凝视渲染为组件

如何在 React Native 中将 UInt16 或字节转换为心跳率

未处理的承诺拒绝:TypeError:网络请求失败 - 在 React Native / Expo 中将 Base64(视频/mp4)转换为 Blob

如何在 react-native 函数组件中将获取数据设置为文本字段

如何在 react-dropzone 中将图像转换为 base64?

在 react-native 中将组件高度设置为 100%