Difference between revisions of "Strlen"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This strlen[s] function will return the length of string ''s''. * '''Pass:''' A string * '''Returns:''' An integer == Example == var a:="hello"; var c:=strle…')
 
m (4 revisions imported)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
  
This strlen[s] function will return the length of string ''s''.
+
This strlen(s) function will return the length of string ''s''.
  
* '''Pass:''' A string
+
* '''Pass:''' A [[String]]
* '''Returns:''' An integer
+
* '''Returns:''' An [[Int]]
  
 
== Example ==
 
== Example ==
  
  var a:="hello";
+
  #include <string>
var c:=strlen[a];
+
 +
function void main() {
 +
    var a:="hello";
 +
    var c:=strlen(a);
 +
};
 +
 
 +
''Since: Version 0.41b''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:String Functions]]
 
[[Category:String Functions]]

Latest revision as of 15:44, 15 April 2019

Overview

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

Example

#include <string>

function void main() {
   var a:="hello";
   var c:=strlen(a);
};

Since: Version 0.41b