Assuming you have a table T
and you want to get the value of a specific row i
and column columnName
, you can use the following code:
main.m27 chars2 lines
For example, consider the following table T
:
| Name | Age | Gender | |-------|-----|--------| | John | 23 | M | | Alice | 30 | F | | Bob | 45 | M |
If you want to get the age of Alice, you can do:
main.m35 chars2 lines
gistlibby LogSnag