Ne / kaldır da bir unended BAŞLANGIÇ öncesinde değil END (preg_replace()
kullanarak) değiştirmek için bir regex (PHP) olurdu?
İşte daha iyi demek istediğimi canlandıracak birkaç örnek:
Example 1:
Input:
sometext....END
Output:
sometext.... //because theres no START, therefore no need for the excess END
Example 2:
Input:
STARTsometext....END
Output:
STARTsometext....END //because its preceded by a START
Example 3:
Input:
STARTsometext....END.......END
Output:
STARTsometext....END....... //because the END is not preceded by a START
Umut biri yardımcı olabilir?
Teşekkür ederiz.