How do I isolate a space using RegExp in VBA (\\s vs. \\p{Zs})?
Introduction/Question: I have been studying the use of Regular Expressions (using VBA/Excel), and so far I cannot understand how I would isolate a <space> (or " " ) using regexp from other white space characters that are included in \s . I thought that I would be able to use \p{Zs} , but in my testing so far, it has not worked out. Could someone please correct my misunderstanding? I appreciate any helpful input. To offer proper credit , I modified some code that started off as a very helpful post by @Portland Runner that is found here: How to use Regular Expressions (Regex) in Microsoft Excel