jachwe
1
Hey there,
when i use pattern matching in my chopexecute DAT some of them work and some don’t.
tabcell table1 rc [0-3] 0 `chop("rgb/r")`
for example does work correctly while
tabcell table1 rc [0,1,2,3] 0 `chop("rgb/r")`
does not.
Is this a limitation of the tabcell command or is there something wrong with the expression?
Greetings
Jewe
ben
2
Pattern Expansion in tscript does not work with commas.
For example;
test[1-4] expands to test1 test2 test3 test4
test[1,2,3,4] does not expand and results only in test1
jachwe
3
okay i see that. but whats with pattern matching.
according to the wiki
should work.
thanks