str-replace

    1熱度

    1回答

    我有一個字符串: a = '3+7-9' 我需要反轉'+'到'-'和'-'到'+'爲了得到 a = '3-7+9' 什麼是正確的方法使用python-3.x而不是乘以* -1?

    -1熱度

    1回答

    我有一個str_replace的問題,我的函數沒有任何作用,我想這是由於隱形字符,但我不知道爲什麼... 我想用兩個標籤替換一個。 感謝 <?php $tempo = str_replace(' </Ligne> </Ligne>', ' </Ligne>', $temp); ?> 我的文本文件 <Ligne> <Ligne> <ll>test</ll

    2熱度

    2回答

    我非常接近解決問題,但我無法弄清楚如何刪除字符串周圍的空格。例如:' ! ','! '和' !'變成'!'。這適用於?性格,。字符和其他標點符號。 這是我的代碼到目前爲止。它應該採取字符並將它們轉換成我已經完成的北約字,但是我的標點符號是錯誤的。例如' ! awesome. .! '轉爲' ! Alfa Whiskey Echo Sierra Oscar Mike Echo . . !',當我不想

    0熱度

    3回答

    刪除逗號我有一個像PHP變量: $biling_cycles = 'Monthly,Annually'; 我希望它是: $biling_cycles = '<span> Monthly, </span> <span> Annually </span>';

    0熱度

    1回答

    我有這樣的代碼片斷: $nieuwetitel = the_title(); echo str_replace('Bijenkorf', 'test', $nieuwetitel); the_title()輸出以下:比熱卡夫 - 痤瘡工作室阿德里安娜€360 使用上面提到的代碼,我想將'Bijenkorf'改爲'測試',但這似乎並不奏效。 最後我想創建一個排除在the_title()(Bij

    0熱度

    2回答

    我想用str_replace來操作字符串的輸出。 function wh_alterProductTitle($title, $id = NULL) { if ('product' == get_post_type($id)) { $title = str_replace('Dames', 'wmns', $title); $title = str_

    1熱度

    1回答

    我想對字符串執行str_replace。 字符串爲「Qualitéde l'air」,修改後的字符串應爲「Qualitdelair」。 我 代碼: $string = "Qualité de l'air"; $newString = str_replace(array("é", " ", "'"), "", $string); 我 也嘗試: $string = "Qualité de l'a

    0熱度

    2回答

    我想知道是否可以保留某些值,並刪除其他定期擴展。 我有這樣的代碼: var str = '<td class="sky" data-toggle="up" id="heaven" > Link to heaven </td>'; var res = str.replace(/(data-toggle=")([a-zA-Z0-9:;\.\s\(\)\-\,]*)(")/gi, ''); co

    2熱度

    2回答

    請有人澄清我的疑問!!!! 我已經看到了堆棧溢出的相同問題的以下帖子,但仍然沒有得到所需的輸出。我不明白爲什麼我的代碼沒有給出所需的輸出使用堆棧溢出給出的相同的代碼。我想問什麼是我在此代碼做錯了更換一個字符的字符串存在的everywhere.I要替換的鍵值字符串中到處存在的入dictionery.Please其映射值看看下面我的代碼: - for _ in range(input()):

    0熱度

    1回答

    我正在使用str_replace()函數替換文本文件中的某些內容。我的代碼: $txt = file_get_contents('script.txt'); function makefile() { $file = fopen("test.txt","w"); fwrite($file,"Hello World. Testing!"); fclose($file)