Regular replace string: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:


== Excel ==
== Excel ==
{{exclaim}} Not support regular expression on Excel. Using the [https://support.office.com/zh-tw/article/substitute-%E5%87%BD%E6%95%B8-6434944e-a904-4336-a9b0-1e58df3bc332 SUBSTITUTE 函數 - Office 支援] function instead.  
Regular expression was not supported well on Excel. Using the [https://support.office.com/zh-tw/article/substitute-%E5%87%BD%E6%95%B8-6434944e-a904-4336-a9b0-1e58df3bc332 SUBSTITUTE 函數 - Office 支援] function instead.  


{{exclaim}} Notice the Excel limit:
{{exclaim}} Notice the Excel limit:
Line 18: Line 18:
[https://www.php.net/manual/en/function.preg-replace.php PHP: preg_replace - Manual]
[https://www.php.net/manual/en/function.preg-replace.php PHP: preg_replace - Manual]


[[Category:Regular expression]] [[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:Text file processing]]
[[Category:Regular expression]] [[Category:Software]] [[Category:Programming]] [[Category:Data Science]] [[Category:String manipulation]]

Latest revision as of 19:31, 9 March 2021

"Replaces part of a text string with a different text string using regular expressions."

Google Sheet[edit]

Icon_exclaim.gif Notice the Google Sheet limit:

  • Maximum string length is 50,000 characters in one cell[1]

Excel[edit]

Regular expression was not supported well on Excel. Using the SUBSTITUTE 函數 - Office 支援 function instead.

Icon_exclaim.gif Notice the Excel limit:

  • Nested 64 Substitute Formulas limit.
  • Excel function limit 8192 character[2]

PHP[edit]

PHP: preg_replace - Manual