php案例 去掉文本所有的空格
【摘要】
作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主
文章目录
cyg.php输入的:输出的:
cyg.php
<!DOCTY...
作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主
cyg.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> 去除文本中所有的空格 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="author">
<meta name="Keywords" content="cstp">
<meta name="Description" content="no-description">
<meta http-equiv="Content-type" content="text/html;charset=GB2312">
<link rel='stylesheet' type='text/css' href='style.css' />
</head>
<body>
<div id="header">去除文本中所有的空格</div>
<div id="content">
<center>去除文本中所有的空格</center>
<center>
<form method="post" action="#">
<textarea name='area' cols='30' rows='5'></textarea><br>
<em>提示:提交文本去除空格</em>
<input type="submit" value="提交" name='sel' id="input">
</form>
</center>
<div id="showtime">
<p>
<?php
if(!empty($_POST['area'])){//如果数据不为空的话,执行if里面的代码
$str = $_POST['area'];//获取字符串
$len = strlen($str);//获取字符串的长度
for($i=0;$i<$len;$i++){//遍历字符串
if($str[$i]==" "){//如果某一个下标是空格的话.
$str[$i]='';//去掉空格.这个没有空格。代表去掉空格操作
}
}
echo $str;//输出出来
}
?>
</p>
</div>
</div>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
输入的:
输出的:
文章来源: blog.csdn.net,作者:贵哥的编程之路(热爱分享),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/127000781
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)