summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_string/scilabcode/strcspntest.sci
blob: 9a03c57646986255f60eeb7c9a6633d3c1d65256 (plain)
1
2
3
4
5
6
function strcspntest()
    x="123243545assdsc";
    y="anki5t3";
    z=strcspn(y,x);
    disp(z);
endfunction