(1234567890),转换成(1,234,567,890)

news/2024/12/6 18:49:06/

完成这样的转换:如:(1234567890),转换成(1,234,567,890)

 public function index5(){$str = '1234567890';/* //先反转字符串$new_str=strrev($str);//在用chunk_split函数将字符串用“ , ” 分割成小块$new_str= chunk_split($new_str,3,',');//去掉右边的逗号,返回出去return strrev(rtrim($new_str,','));*///计算字符串长度$strl=strlen($str);//每3位加逗号,其余的也要使用逗号隔开。//求字符串长度对3的余数,用来计算逗号放的位置$newstr = '';$y=$strl%3;$l=$strl-1;for($i=0;$i<=$l;$i++){//如果对3取余等于余数需要加逗号。并且排除(i=0)的情况if($i%3==$y && $i!=0){$newstr.=',';}$newstr.=$str{$i};}

 


http://www.ppmy.cn/news/542400.html

相关文章

890.查找和替换模式

890.查找和替换模式 你有一个单词列表 words 和一个模式 pattern&#xff0c;你想知道 words 中的哪些单词与模式匹配。 如果存在字母的排列 p &#xff0c;使得将模式中的每个字母 x 替换为 p(x) 之后&#xff0c;我们就得到了所需的单词&#xff0c;那么单词与模式是匹配的…

leetcode890 Java实现

leetcode890 Java实现 题目 思路 想办法找个每个字符相对应的映射关系&#xff0c;在这里我把每个字符都映射成不同的数字&#xff0c;每个字符都对应一个数字&#xff0c;若目标字符串的字符对应的数字与输入字符串数组中的字符对映数字相等&#xff0c;则该字符串符合要求。…

LeetCode: 890. Find and Replace Pattern

LeetCode: 890. Find and Replace Pattern 题目描述 You have a list of words and a pattern, and you want to know which words in words matches the pattern. A word matches the pattern if there exists a permutation of letters p so that after replacing every l…

Acwing 890. 能被整除的数

Acwing 890. 能被整除的数 题目描述 给定一个整数 n 和 m 个不同的质数 p1,p2,…,pm。 请你求出 1∼n中能被 p1,p2,…,pm 中的至少一个数整除的整数有多少个。 输入格式 第一行包含整数 n 和 m。 第二行包含 m个质数。 输出格式 输出总共的个数。数据范围 1≤m≤16, 1…

LeetCode Problems #890

2018年9月16日 #890. Find and Replace Pattern 问题描述&#xff1a; You have a list of words and a pattern, and you want to know which words in words matches the pattern. A word matches the pattern if there exists a permutation of letters p so that after …

890. Find and Replace Pattern

# 简单题&#xff0c;直接对输入做一个变换就可以 class Solution { public:string change_word_format(string word){string result "";map<char, string> s;int index 0;for(int i0;i<word.length();i){if(s.find(word[i])s.end()){s[word[i]]to_strin…

890. 查找和替换模式

890. 查找和替换模式 https://leetcode-cn.com/contest/weekly-contest-98/problems/find-and-replace-pattern/ package com.test;import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map;//https://leetcode-cn.com/contest/we…

tcl电视linux系统怎么升级,TCL电视MS80104系列最新890版升级方法及效果图!

原标题:TCL电视MS80104系列最新890版升级方法及效果图! MS80104系列系统UI全面升级890版 件版本号:V8-MS80104-LF1V890芯片方案:MS801 ()固件适用机型: TCL智能电视F3390/E5300/E5050/E5060/E4500/E4380/E5390/F3500/E5500系列 亲测好用,稳定,无bug,有需要的可以自行下载,…