仅从给定的字符串获取参数名称

时间:2018-07-05 11:44:00

标签: c# string

string mystring = "Display(String type1, String type2, String art3, String ar4, String art5, String art6, String arg7)"

仅从上面的字符串(例如 type1,type2,art5 等)中获取参数名称。

我应该如何操作

1 个答案:

答案 0 :(得分:0)

class Home extends Component {
  componentWillMount(){
    this.props.fetchMatches();
  }

  handleChange(newDateRange){
    this.props.fetchMatches({
      ...this.props,
      startDate: newDateRange[0],
      endDate: newDateRange[1]
    })
  }