September 11, 201411 yr Hello All: I have a text field that I'd like to filter on taking only characters A-Z, 0-9 and some special characters like "@#$%, carriage returns and tabs. My problem is I don't know how to specify the Special Characters, Carriage Return and Tab in the Filter script. Anyone? Dom
September 11, 201411 yr Use the Char() function to pass the matching ASCII values / Unicode code points; in this case, that would be Char(9) and Char(13),
September 12, 201411 yr Filemaker has a special symbol for the carriage return: ¶ There's even a button in the Specify Calculation window for inserting the symbol. Alternatively, you can use Char (13). Regarding the tab, you can either type* or paste an actual tab into the formula (there's no way to type it, AFAIK) or - preferably - use Char (9). --- (*) Using Ctrl+Tab on Windows, Option+Tab on OS X. Edited September 12, 201411 yr by comment
September 12, 201411 yr On Windows you can type CTRL + TAB I stand corrected. I am not sure when this started, but I see that you can type a tab on a Mac too, using Option+Tab.
Create an account or sign in to comment