| 457 | |
| 458 | |
| 459 | int CsvTable::replaceInCurrentCell(table_index_t myRow, table_index_t myCol, std::string pattern, std::string replace, bool caseSensitive, bool useRegex) { |
| 460 | std::string replaced; |
| 461 | int count_replacements; |
| 462 | std::tie(replaced,count_replacements) = replaceUtf8String( pattern, replace, getCell(myRow, myCol), caseSensitive, useRegex ); |
| 463 | setCell( replaced, myRow, myCol ); |
| 464 | return count_replacements; |
| 465 | } |
| 466 | |
| 467 | |
| 468 | /** |
no outgoing calls
no test coverage detected