Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: REGEXP extract data
Date: Fri, 18 Jan 2008 19:00:25 +0000 (UTC)
Organization: AIR Worldwide Corp
Lines: 10
Message-ID: <fmqt09$mtb$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1200682825 23467 172.30.248.35 (18 Jan 2008 19:00:25 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 18 Jan 2008 19:00:25 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1076536
Xref: news.mathworks.com comp.soft-sys.matlab:446383



I have character data like:

aa = {'BI234','EVB67','C4566','St Vermont','DD'};
How can I use REGEXP to separate the character and the number?

so 
aa1 = {'BI','EVB','C','St Vermont','DD'};
aa2 = {'234','67','4566','',''};;

Thanks for your suggestions,