STRCMP(A$, B$)
Purpose | Perform a comparison between its two string expressions A$ and B$. IF A$ and B$ are equals, STRCMP will return a 0, if A$ is of lower order (in ASCII table order) than B$ the function will return a negative value. Otherwise it returns a positive value. |
Examples | IF STRCMP(A$, B$)=0 THEN |
Comments: | IF A$ and B$ are the same then turn on the stepper motor #1. |