国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PHP > 正文

PHP字符串word末字符實(shí)現(xiàn)大小寫互換的方法

2024-05-04 23:27:06
字體:
供稿:網(wǎng)友
這篇文章主要介紹了PHP字符串word末字符實(shí)現(xiàn)大小寫互換的方法,是涉及PHP字符串轉(zhuǎn)換非常實(shí)用的技巧,需要的朋友可以參考下
 
 

本文實(shí)例講述了PHP字符串word末字符實(shí)現(xiàn)大小寫互換的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

一、要求:
給出一個字符串如 “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 這種形式的轉(zhuǎn)換。
3、標(biāo)點(diǎn)符號(只考慮 , ' " . ;)不用變化。

二、參考算法如下:

 

復(fù)制代碼代碼如下:
<?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;
    }
?>

 

測試代碼如下:

復(fù)制代碼代碼如下:
<?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:<br/>" . $str1 . "<br/>result:<br/>" . convertLastChar($str1) . "<br/><br/>";
    echo "source:<br/>" . $str2 . "<br/>result:<br/>" . convertLastChar($str2) . "<br/><br/>";
    echo "source:<br/>" . $str3 . "<br/>result:<br/>" . convertLastChar($str3) . "<br/><br/>";
    echo "source:<br/>" . $str4 . "<br/>result:<br/>" . convertLastChar($str4) . "<br/><br/>";
    echo "source:<br/>" . $str5 . "<br/>result:<br/>" . convertLastChar($str5) . "<br/><br/>";
    echo "source:<br/>" . $str6 . "<br/>result:<br/>" . convertLastChar($str6) . "<br/><br/>";
?>

 

運(yùn)行結(jié)果如下:

復(fù)制代碼代碼如下:
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程序設(shè)計有所幫助。


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 蒙山县| 杨浦区| 邢台市| 邮箱| 民丰县| 和政县| 凌云县| 新野县| 桐梓县| 辽阳县| 鲁山县| 湘潭市| 隆回县| 方城县| 拜泉县| 塔河县| 青田县| 三明市| 宁河县| 阿拉善右旗| 姚安县| 石首市| 安泽县| 江口县| 庆阳市| 胶州市| 惠水县| 任丘市| 丹棱县| 永济市| 伊春市| 宿松县| 时尚| 若羌县| 安乡县| 建平县| 阳新县| 教育| 塘沽区| 彰武县| 涟水县|