无需进行无数次操作即可格式化字符串

本文关键字:格式化 字符串 操作 | 更新日期: 2023-09-27 18:07:41

在解析html web文档时,我最终得到的字符串可能看起来像这样:

"钢铁之刃"'n 'n 'n 'n 'n典型-你的情况'n 28'n 347'n 'n $8.47 ' n ' n1234567891011121314151617181920212223242526272829303132 "

在这个字符串中我想要的就是这些值:

  • 一串"Blades of Steel"
  • $8.47

如何轻松解析字符串而无需执行多个string.Replacestring.Split ?

无需进行无数次操作即可格式化字符串

如果事先知道格式,可以编写正则表达式对其进行解析

如果你知道格式,你可以这样做:

  string first = yourString.Split(''n')[0]; //Blades of Steel
  string second = yourString.Split(''n')[9]; //$8.47