📌  相关文章
📜  PHP |给定字符串中的不同字符

📅  最后修改于: 2022-05-13 01:56:23.490000             🧑  作者: Mango

PHP |给定字符串中的不同字符

我们有字符串str ,我们需要从给定的字符串中找到包含所有唯一字符的字符串。所有不同的字符应按升序打印。

例子:

Input : $str = "GeeksforGeeks"
Output : Gefkors
Explanation, the unique characters in the given
string $str in ascending order are G, e, f, k, 
o, r and s

Input : $str = "Computer Science Portal"
Output : CPSaceilmnoprtu
Explanation, the unique characters in the given 
string $str are C, P, S, a, c, ei, l, m, n, o, 
p, r, t and u

该问题可以使用PHP内置函数来解决,该函数用于收集给定字符串中使用的所有唯一字符。用于给定问题的内置函数是:

  1. count_chars():内置函数有参数,其中包含返回模式一个整数类型,如 0、1、2、3、4,其中返回模式 3 按升序返回给定字符串中使用的所有不同字符的字符串.

    注意:字符串区分大小写。

示例 1:


输出:
Gefgkors

示例 2:


输出:
Gefkors

示例 3:


输出:
CPSaceilmnoprtu