Core Function SubStr

From Sputnik Wiki
(Difference between revisions)
Jump to: navigation, search
(count)
m (1 revision)
 
(16 intermediate revisions by one user not shown)
Line 1: Line 1:
 
<pre>
 
<pre>
SubStr( <expression>, <start>, <end> )
+
SubStr( <expression>, <start>, <count>, <replacement> )
 
</pre>
 
</pre>
  
Line 25: Line 25:
 
Optional; The number of characters to extract. By default the entire remainder of the string.
 
Optional; The number of characters to extract. By default the entire remainder of the string.
  
If count is given and is negative, then that many characters will be omitted from the end of string (after the start position has been calculated when a start is negative). If start denotes the position of this truncation or beyond, false will be returned.
+
If count is given and is negative, then that many characters will be omitted from the end of string (after the start position has been calculated when a start is negative). If start denotes the position of this truncation or beyond, empty string will be returned.
 +
 
 +
(Note - If you wish to extract from a start to a end position instead of from start to a number of characters you should see Sub())
 +
 
 +
==== replacement ====
 +
 
 +
Optional; If you set this parameter the substring will be replaced instead of returned so you will receive a new string with the substring replaced with the replacement text.
  
 
=== Return Value ===
 
=== Return Value ===
Line 45: Line 51:
  
 
Example using Start as a negative number
 
Example using Start as a negative number
 +
 
<syntaxhighlight lang="sputnik">
 
<syntaxhighlight lang="sputnik">
 
say substr("UberFoX", -3); // Prints FoX
 
say substr("UberFoX", -3); // Prints FoX
 
say substr("UberFoX", -4, 2); // Prints rF
 
say substr("UberFoX", -4, 2); // Prints rF
 +
</syntaxhighlight>
 +
 +
Using replacement and returning a new string
 +
 +
<syntaxhighlight lang="sputnik">
 +
$str = "UberCat!";
 +
print substr($str, 4, 3, "FoX");
 +
# Prints
 +
# UberFoX!
 +
</syntaxhighlight>
 +
 +
Example of using an array as the second param
 +
 +
<syntaxhighlight lang="sputnik">
 +
my $str = "the quick brown fox";
 +
my $needle = "quick";
 +
my $start = strpos($str, $needle);
 +
my $len = strlen($needle);
 +
my $arr = array($start, $len);
 +
say substr($str, $arr); // Prints "quick"
 +
 +
# Slghtly better than doing substr($str, $arr[0], $arr[1]);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
[[Category:Core Function]]
 
[[Category:Core Function]]

Latest revision as of 12:38, 14 June 2015

SubStr( <expression>, <start>, <count>, <replacement> )

Contents

Description

Return part of a string

Parameters

expression

The expression to evaluate.

start

The character position to start. (0 = first character)

OR

If the start is a negative value the character position will work backwards from the length of the string.

count

Optional; The number of characters to extract. By default the entire remainder of the string.

If count is given and is negative, then that many characters will be omitted from the end of string (after the start position has been calculated when a start is negative). If start denotes the position of this truncation or beyond, empty string will be returned.

(Note - If you wish to extract from a start to a end position instead of from start to a number of characters you should see Sub())

replacement

Optional; If you set this parameter the substring will be replaced instead of returned so you will receive a new string with the substring replaced with the replacement text.

Return Value

Success: Returns the extracted string.

Failure: Returns an empty string.

Remarks

None.

Example

$var = Substr("I am a string", 2, 2);
MsgBox("2 chars extracted from position 2 are: $var");

Example using Start as a negative number

say substr("UberFoX", -3); // Prints FoX
say substr("UberFoX", -4, 2); // Prints rF

Using replacement and returning a new string

$str = "UberCat!";
print substr($str, 4, 3, "FoX");
# Prints
# UberFoX!

Example of using an array as the second param

my $str = "the quick brown fox";
my $needle = "quick";
my $start = strpos($str, $needle);
my $len = strlen($needle);
my $arr = array($start, $len);
say substr($str, $arr); // Prints "quick"
 
# Slghtly better than doing substr($str, $arr[0], $arr[1]);
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox