PhpSpreadsheet/tests
Timur 50a9bc83ab Sheet title can contain exclamation mark (in formulas)
When extracting sheet title from string reference (like `"Work!sheet1!A1"`), PHP function `explode()` divide this string into three parts: `['Work', 'sheet1', 'A1']`. And then these wrong values are used in formulas, ranges, etc.

This change fix that problem by using special function `Worksheet::extractSheetTitle()`. This function also has been changed to make sure that worksheet title can contain "!" character. So, that function search last position of "!" in reference string and divide it to 2 parts correctly: `['Work!sheet1', 'A1']`.

Fixes #325
Fixes #662
2018-10-03 12:52:51 +09:00
..
PhpSpreadsheetTests Sheet title can contain exclamation mark (in formulas) 2018-10-03 12:52:51 +09:00
data Sheet title can contain exclamation mark (in formulas) 2018-10-03 12:52:51 +09:00
bootstrap.php Simplify bootstrap for tests 2017-01-23 15:05:41 +09:00