best practices around special characters in JSL?
example="blah blah Width = 25.0 �m ..some more stuff";
widthtext=regex(example,"Width\s=\s+\d+[.]\d+\s[\w?�]m");
Sorry this is less a very specific problem that a general issue I'm looking for recommendations on as I've had this issue in different contexts. In this specific example I'm using loadtextfile() to get some text that I ...
widthtext=regex(example,"Width\s=\s+\d+[.]\d+\s[\w?\x{FFFD}]m");