How to deal with a string with comma in it from a csv, when we have to read the data by using loadrunner?
问题 When I used Loadrunner, it can read data from a csv file. As we know , csv file is separated by a comma. The question is, if the parameter in csv has comma itself, the string will be separated to several segments. That is not I want to get. How can we get the original data with comma in it? 回答1: When data has a comma, use an escape character to store the data in the parameter. For example, if the name is 'Smith, John', it can be stored as Smith\, John in the Loadrunner data file. 回答2: When