octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

help with regexprep


From: rik
Subject: help with regexprep
Date: Wed, 20 May 2015 21:33:04 -0700

5/20/15

I'm trying to determine which escape sequences Matlab processes for regular
expressions.  Could someone run the following and report back the results?

diary on
regexprep (',', ',', '*')
regexprep ('\x2C', ',', '*')
regexprep (',', '\x2C', '*')
regexprep (',', ',', '\x2A')
regexprep ('\x{2C}', ',', '*')
regexprep (',', '\x{2C}', '*')
regexprep (',', ',', '\x{2A}')
regexprep (',', '\o54', '*')
regexprep (',', '\o{54}', '*')
diary off

This leave things in the file diary for upload.

--Rik



reply via email to

[Prev in Thread] Current Thread [Next in Thread]