Python关于去除字符串中空格的方法

Python关于去除字符串中空格的方法

在编写程序时我们经常会遇到需要将字符串中的空格去掉的情况,通常我们可以使用下面几种解决方法:

1、strip()方法:该方法只能把字符串头和尾的空格去掉,但是不能将字符串中间的空格去掉。

s=‘ This is a demo ‘

print(s.strip())

lstrip():该方法只能把字符串最左边的空格去掉。

s=‘ ! This is a demo ‘

l=‘!‘

print(s.lstrip()+l)

rstrip():该方法只能把字符串最右边的空格去掉。

s=‘ ! This is a demo ‘

l=‘!‘

print(s.rstrip()+l)

2.replace(m,n)方法:将字符串里面的m替换为n。

#将字符串中所有的空格删除

s=‘ This is a demo ‘

print(s.replace(‘ ‘,‘‘))

3.split(s,num)方法:split(s,num)

#使用join()方法将字符串中所有的空格删除

s=‘ This is a demo ‘

print(‘‘.join(s.split()))

其中,join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。

格式如下:

s.join(sequence)

元素之间的分隔符是s,sequence是要连接的元素序列。

#使用“=”将字符串序列连接起来

s="="

#字符串序列

seq=("a", "b", "c")

print(s.join(seq))

原文地址:https://www.cnblogs.com/BIXIABUMO/p/11789805.html

时间: 2024-11-05 18:57:57

Python关于去除字符串中空格的方法的相关文章

Python中去除字符串中空格的方法

Python中去除字符串中指定字符或者空格的方法有几种: str.strip() //该方法用于去除字符串开头和结尾的指定字符或字符串(默认为空格或换行符) str.lstrip() //该方法用于截掉字符串左边的空格或指定字符 str.rstrip() //该方法用于截掉字符串右边的空格或指定字符 所以若是要去除字符串中所有的空格可以使用如下方式: str.strip().lstrip.rstrip() 原文地址:https://www.cnblogs.com/EdenChanIy/p/993

去除字符串中空格的方法(2016.1.12P141-2)

1 // forif来处理空格 2 // 方法一 3 String str = " ww sse rr"; 4 5 String str1;// 定义一个中间变量 6 7 String str2 = "";// 定义一个中间变量 8 9 for (int i = 0; i < str.length(); i++) { 10 11 str1 = str.substring(i, i + 1); 12 13 if (!(str1.indexOf(" &q

去除字符串中空格

去除字符串前后的空格 function trim(str) {return str.replace(/(^\s+)|(\s+$)/g, "");} 去除字符串中所有空格 function removeAllSpace(str) {return str.replace(/\s+/g, "");} 用法举例:alert(trim(' ab cd ')); //结果: ab cdalert(removeAllSpace(' ab cd ')); //结果: abcd

python如何去除字符串中不想要的字符

问题: 过滤用户输入中前后多余的空白字符 ‘    ++++abc123---    ‘ 过滤某windows下编辑文本中的'\r': ‘hello world \r\n' 去掉文本中unicode组合字符,音调 "Zhào Qián Sūn Lǐ Zhōu Wú Zhèng Wáng" 如何解决以上问题? 去掉两端字符串: strip(), rstrip(),lstrip() 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/python3

Python去掉字符串中空格的方法

str1 = ' 小明在线 ' print(str1) #lstrip:删除左边的空格 print(str1.lstrip()) #rstrip:删除右连的空格 print(str1.rstrip()) #strip:删除两端的空格 print(str1.strip()) 运行截图: 注释:用 dir(str) 这个方法,获得 str字符串的所有方法列表

python去除字符串中间空格的方法

1.使用字符串函数replace 1 a = 'hello world' 2 a.replace(' ', '') 3 # 'helloworld' 2.使用字符串函数split 1 a = ''.join(a.split()) 2 print(a) 3 # helloworld 3.使用正则表达式 1 import re 2 strinfo = re.compile() 3 strinfo = re.compile(' ') 4 5 b = strinfo.sub('', a) 6 print

2016/1/12 第一题 输出 i 出现次数 第二题 用for循环和if条件句去除字符串中空格 第三题不用endwith 实现尾端字符查询

1 import java.util.Scanner; 2 3 4 public class Number { 5 6 private static Object i; 7 8 /* 9 *第一题 mingrikejijavabu中字符“i” 出现了几次,并将结果输出*/ 10 public static void main(String[] args) { 11 12 String r ="imingrikejijavabi"; 13 14 15 //第一种 截取 16 int a=

pyhton去掉字符串中空格的方法

In[2]: a=' ddd dfe dfd efre ddd ' In[3]: a Out[3]: ' ddd dfe dfd efre ddd ' In[4]: a.strip() Out[4]: 'ddd dfe dfd efre ddd' In[5]: a.lstrip() Out[5]: 'ddd dfe dfd efre ddd ' In[6]: a.rstrip() Out[6]: ' ddd dfe dfd efre ddd' In[7]: a.replace(' ','') O

去除字符串中的空格

用C语言写一个函数,去除字符串中的空格,并返回删除的空格的个数.不允许开辟新的空间,只能申请简单类型的自动变量.时间复杂度要求为O(n). #include <bitset> #include<iostream> int deleteSpace(char * pstr); void main() { char word[]="dhkak df d fd fdjfkda dfd ff f fd da "; deleteSpace(word); std::cout&