Home  >  Article  >  Backend Development  >  How to remove the last three digits from a string in php

How to remove the last three digits from a string in php

青灯夜游
青灯夜游Original
2022-09-27 19:54:183562browse

Two elimination methods: 1. Using the substr() function, you only need to set the second parameter to 0 and the third parameter to "-3". The syntax is "substr($str, 0,-3)”. 2. To use the substr_replace() function, you only need to set the second parameter to an empty string and the third parameter to "-3". The syntax is "substr_replace($str,"",-3)".

How to remove the last three digits from a string in php

The operating environment of this tutorial: windows7 system, PHP version 8.1, DELL G3 computer

php removes strings Method for the last three digits

Method 1: Use the substr() function to remove

The substr() function returns part of the string.

substr(string,start,length)
Parameters Description
string Required . Specifies a part of the string to be returned.
start Required. Specifies where in the string to begin.
  • Positive number - starts at the specified position in the string
  • Negative number - starts at the specified position from the end of the string
  • 0 - at the first character in the string Start at
length Optional. Specifies the length of the string to be returned. The default is until the end of the string.
  • Positive number - Returns from the position of the start parameter
  • Negative number - Returns from the end of the string

Just set the second parameter of the function to 0 and the third parameter to a negative value (-3).

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);   
$str = "hello123";
echo "原字符串:".$str."<br>";
echo "删除后3个字符:".substr($str,0,-3);
?>

How to remove the last three digits from a string in php

Method 2: Use the substr_replace() function to eliminate

The substr_replace() function can replace the specified position starting from the specified position in the string number of characters.

substr_replace(string,replacement,start,length)
Parameters Description
string Required . Specifies the string to check.
replacement Required. Specifies the string to be inserted.
start Required. Specifies where in the string to begin replacement.
  • Positive number - starts at the specified position in the string
  • Negative number - starts at the specified position from the end of the string
  • 0 - at the first character in the string Start at
length Optional. Specifies how many characters to replace. The default is the same as the string length.
  • Positive number - the length of the string to be replaced
  • Negative number - the number of characters to be replaced from the end of the string
  • 0 - insert instead of replace
  • substr_replace() Replaces the substring qualified by the start and optional length parameters in a copy of string string using replacement.

  • If start is a positive number, replacement will start from the start position of string. If start is negative, the replacement will start at the start position from the bottom of string.

  • If the length parameter is set and is a positive number, it represents the length of the replaced substring in string. If set to a negative number, it represents the number of characters from the end of the substring to be replaced from the end of string. If this parameter is not provided, the default is strlen(string) (the length of the string). Of course, if length is 0, then the function of this function is to insert replacement at the start position of string.

You only need to set the second parameter of the function to an empty string, and set the third parameter to a negative value (-N). It will be the Nth from the bottom of the string. Starting with characters, replace all remaining characters with an empty string, that is, remove the last N characters of the string.

If you want to remove the last 3 digits, set N to 3.

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);   
$str = &#39;hello world!&#39;;
echo "原字符串:".$str."<br><br>";
$replace = &#39;&#39;;
echo "替换后3位字符:".substr_replace($str, $replace,-3);
?>

How to remove the last three digits from a string in php

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to remove the last three digits from a string in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn