React

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > React > React使用 substring() 方法

如何在 React 中使用 substring() 方法

投稿:mrr

这篇文章主要介绍了在 React 中使用 substring() 方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

在 React 中使用 substring() 方法:

const App = () => {
  const str = 'Walk the dog';
  const result = str.substring(0, 4);
  console.log(result); // ?️ "Walk"
  return (
    <div>
      <h2>{result}</h2>
    </div>
  );
};
export default App;

我们传递给 String.substring 方法的两个参数是:

JavaScript 中的索引是从零开始的,这意味着字符串中的第一个索引是 0,最后一个索引是 str.length - 1

我们也可以直接在 JSX 代码中使用 substring 方法。

const App = () => {
  const str = 'Walk the dog';
  return (
    <div>
      <h2>{str.substring(0, 4)}</h2>
    </div>
  );
};
export default App;

如果我们只将起始索引传递给该方法,它将返回一个包含剩余字符的新字符串。

const App = () => {
  const str = 'Walk the dog';
  const result = str.substring(5);
  console.log(result); // ?️ "the dog"
  return (
    <div>
      <h2>{result}</h2>
    </div>
  );
};
export default App;

我们从索引 5 处开始提取字符,一直到原始字符串的末尾。

到此这篇关于在 React 中使用 substring() 方法的文章就介绍到这了,更多相关React使用 substring() 方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文