登录  /  注册
首页 > php教程 > php手册 > 正文
PHP字符串word末字符实现大小写互换的方法,字符串大小写
php中文网
发布: 2016-06-13 09:21:29
原创
695人浏览过

PHP字符串word末字符实现大小写互换的方法,字符串大小写


本文实例讲述了PHP字符串word末字符实现大小写互换的方法。分享给大家供大家参考。具体实现方法如下:

一、要求:
给出一个字符串如 “A journey of, a thousand 'miles' must can't \"begin\" with a single step.” ,通过 PHP 程序处理变成 “a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.”

这里需要注意:

1、每个单词最后的字符如果是大写就变成小写,如果是小写就变成大写。
2、需要考虑类似 can't 这种形式的转换。
3、标点符号(只考虑 , ' " . ;)不用变化。

二、参考算法如下:

复制代码 代码如下:

<?php
function convertLastChar($str) {
$markArr = array(", ", "' ", "\" ", ". ", "; ");
$ret = "";
for ($i = 0, $j = strlen($str); $i < $j; $i++) {
if ($i < $j - 2) {
$afterStr = $str{$i + 1} . $str{$i + 2};
} else if ($i < $j - 1) {
$afterStr = $str{$i + 1} . " ";
}
if (in_array($afterStr, $markArr)
|| $i == $j - 1
|| $str{$i + 1} == " ") {
$ret .= strtoupper($str{$i}) === $str{$i}
? strtolower($str{$i})
: strtoupper($str{$i});
} else {
$ret .= $str{$i};
}
}
return $ret;
}
?>

测试代码如下:

复制代码 代码如下:

<?php

//test
$str1 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step.";
$str2 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. ";
$str3 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a ";
$str4 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a B";
$str5 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a b'";
$str6 = "A journey of, a thousand 'miles' must can't \"begin\" with a single step. a B\"";

echo "source:
" . $str1 . "
result:
" . convertLastChar($str1) . "

";
echo "source:
" . $str2 . "
result:
" . convertLastChar($str2) . "

";
echo "source:
" . $str3 . "
result:
" . convertLastChar($str3) . "

";
echo "source:
" . $str4 . "
result:
" . convertLastChar($str4) . "

";
echo "source:
" . $str5 . "
result:
" . convertLastChar($str5) . "

";
echo "source:
" . $str6 . "
result:
" . convertLastChar($str6) . "

";
?>

运行结果如下:

复制代码 代码如下:

source:
A journey of, a thousand 'miles' must can't "begin" with a single step.
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.

source:
A journey of, a thousand 'miles' must can't "begin" with a single step.
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP.

source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A

source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a B
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A b

source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a b'
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A B'

source:
A journey of, a thousand 'miles' must can't "begin" with a single step. a B"
result:
a journeY oF, A thousanD 'mileS' musT can'T "begiN" witH A singlE steP. A b"

希望本文所述对大家的PHP程序设计有所帮助。

相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 技术文章
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2023 //m.sbmmt.com/ All Rights Reserved | 苏州跃动光标网络科技有限公司 | 苏ICP备2020058653号-1

 | 本站CDN由 数掘科技 提供

登录PHP中文网,和优秀的人一起学习!
全站2000+教程免费学