How to replace the character in the middle of a string-php Tutorial

Source: Internet
Author: User
How can I replace a character in the middle of a string? how can I replace a character in the middle of a string? For example, replace & nbsp; fdsfdsfdsjkww with: f ************ w for example: & nbsp; replace points with: deduct *** for example: & nbsp; replace the deduction points with *** s. For example, & nbsp; tt: replace the deduction points: t ***** s how to replace the character in the middle of a string
How to replace the character in the middle of a string?
For example, fdsfdsfdsjkww
Replace with: f *********** w
For example, the score is deducted by Jin Ximin.
Replace with: buckle *** people
For example, the score is deducted by Jin Ximin s.
Replace with: *** s
For example, tt points are deducted by Jin Ximin s.
Replace with: t ***** s

Share:


------ Solution --------------------


$ Str = 'TT points deducted from Kingdom s ';
Function hide_repalce ($ str, $ code = 'utf-8 '){
Mb_internal_encoding ($ code );
$ Len = mb_strlen ($ str );
Return mb_substr ($ str, 0, 1). str_repeat ('*', $ len-2). mb_substr ($ str, $ len-1, 1 );

}
Echo hide_repalce ($ str );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.