51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#字符串
shell 判断字符串长度是否不为0
test.sh#!/bin/bashs1=""iftest$s1;thenecho"lengthisnotzero"elseecho"thelengthis0"fis2="shell"iftest$s2;thenecho"lengthisnot0"elseecho"thelengthis0"fi执行sudo...
代码星球
·
2020-08-09
shell
判断
字符串
长度
是否
shell 判断字符串长度是否为0
test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest-z$filename;thenecho"thelengthis0"elseecho"thelengthisnot0"fi执行sudochmod+xtest.sh./test.sh输出enter...
代码星球
·
2020-08-09
shell
判断
字符串
长度
是否
shell 判断一个字符串是否为空
test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest$filename;thenecho"it'snotzero"elseecho"it'szero"fi执行sudochmod+xtest.sh./test.sh输出enterthestring:...
代码星球
·
2020-08-09
shell
判断
一个
字符串
是否
shell 字符串加入变量
your_name='runoob'str="Hello,Iknowyouare"$your_name"!"echo$str ...
代码星球
·
2020-08-09
shell
字符串
加入
变量
c++ 字符串拷贝以及合并
#include<iostream>#include<string>usingnamespacestd;classstringfun{charname[20];public:voidconcatString(chara[],charb[]){strcat(a,"");strcat(a...
代码星球
·
2020-08-09
c++
字符串
拷贝
以及
合并
python 字符串压缩
importzlibs=b'witchwhichhaswhichwitcheswristwatch'print(len(s))t=zlib.compress(s)print("*******compress*******")print(t)print("")print(len(t))print("*****...
代码星球
·
2020-08-09
python
字符串
压缩
python 字符串替换
'teafortoo'.replace('too','two')输出'teafortwo' ...
代码星球
·
2020-08-09
python
字符串
替换
python 正则匹配字符串里面的字符
importrex=re.findall(r'f[a-z]*','whichfootorhandfellfastest')print(x) ...
代码星球
·
2020-08-09
python
正则
匹配
字符串
面的
去除字符串首尾的空格
functiontrim(s)return(string.gsub(s,"^%s*(.-)%s*$","%1"))endstring1="RUNOOB"string2=trim(string1)print(string2) ...
代码星球
·
2020-08-09
去除
字符串
首尾
空格
Lua 字符串
字符串或串(String)是由数字、字母、下划线组成的一串字符。Lua语言中字符串可以使用以下三种方式来表示:单引号间的一串字符。双引号间的一串字符。[[和]]间的一串字符。 实例string1="Lua"print(""字符串1是"",string1)string2='runoob.com'pr...
代码星球
·
2020-08-09
Lua
字符串
python 执行字符串中的python代码
mycode='print("helloworld")'code="""defmutiply(x,y):returnx*yprint('Multiplyof2and3is:',mutiply(2,3))"""exec(mycode)exec(code) ...
代码星球
·
2020-08-09
python
执行
字符串
中的
代码
python 字符串的反转
defstring_reverse(str1):rstr1=''index=len(str1)whileindex>0:rstr1+=str1[index-1]index=index-1returnrstr1print(string_reverse('1234abcd')) ...
代码星球
·
2020-08-09
python
字符串
反转
python 判断列表字符串元素首尾字符是否相同
defmatch_words(words):ctr=0forwordinwords:iflen(word)>1andword[0]==word[-1]:ctr+=1returnctrprint(match_words(['abc','xyz','aba','122771'])) ...
代码星球
·
2020-08-09
python
判断
列表
字符串
元素
python 去除字符串两端的引号
a='"srting"'print(a)b=eval(a)print(b)输出"srting"srting ...
代码星球
·
2020-08-09
python
去除
字符串
两端
引号
python 列表字符串元素乱序
fromrandomimportshufflecolor=['1','2','3','4','5']shuffle(color)print(color) ...
代码星球
·
2020-08-09
python
列表
字符串
元素
乱序
首页
上一页
...
43
44
45
46
47
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他