You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document some cases where solution might not work well. Making class extendable and offering some over-rideable methods may allow for solutions to some of these problems.
Copy file name to clipboardExpand all lines: docs/topics/reading-and-writing-to-file.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1200,7 +1200,12 @@ You can then echo `$result` to a terminal, or write it to a file with `file_put_
1200
1200
| A | B | C | D |
1201
1201
+---+-----+------------------+---+----------+
1202
1202
| 1 | 6 | 1900-01-06 00:00 | | 0.572917 |
1203
-
| 2 | 6 | 1900-01-06 00:00 | | 1<>2 |
1203
+
| 2 | 6 | TRUE | | 1<>2 |
1204
1204
| 3 | xyz | xyz | | |
1205
1205
+---+-----+------------------+---+----------+
1206
1206
```
1207
+
Please note that this may produce sub-optimal results for situations such as:
1208
+
- use of accents as combining characters rather than using pre-composed characters (may be handled by extending the class to override the `getString` or `strlen` methods)
1209
+
- Fullwidth characters
1210
+
- right-to-left characters (better display in a browser than a terminal on a non-RTL system)
0 commit comments