Difference between revisions of "Strlen"

From Mesham
Jump to navigationJump to search
m
Line 11: Line 11:
 
  var a:="hello";
 
  var a:="hello";
 
  var c:=strlen(a);
 
  var c:=strlen(a);
 +
 +
''Since: Version 0.41b''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:String Functions]]
 
[[Category:String Functions]]

Revision as of 18:41, 13 January 2013

Overview

This strlen(s) function will return the length of string s.

Example

#include <string>
var a:="hello";
var c:=strlen(a);

Since: Version 0.41b