But that is true of any attempt to match latex to an exact string, is it not? That is not unique to having the £ symbol.
It is a shame that you cannot do wildcard/regex matching, to match this.latex to “£*” for example and use countNumberUsage / numericValue to check the value. Maybe doable with pattern matching?
Actually no. Matching a string must be exact, while latex will resolve extra spaces and whatnot. However, I think in this case /pound is not supported.
In another situation (for evaluating a function that wasn’t supported in CL, but worked in graph), I have converted a student’s latex into text and then used that text. Maybe that strategy will work here? Like this?
Again probably doesn’t work because the special character isn’t recognized. Maybe with a text input, but then that wouldn’t yield correctness on the dashboard.
If it recognises the £ through strict text matching (which it does) then maybe on this occasion, it will just have to be a series of ors to accommodate students maybe introducing a space at the start or end or between.
check=this.latex="£64.75" or this.latex=" £64.75" or this.latex="£ 64.75" or ...