Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
Ruben
Posts:
16
Registered:
6/17/10
|
|
Match regular expression
Posted:
Aug 24, 2010 3:18 AM
|
|
Dear all,
I want to get the elements of an equation which are separate by either' &&' or '||'. For example:
str = 'adv_speed == 0 || src_locs == 3940 && safe_dist == 2'
should be splitted into
'adv_speed == 0 ' ' src_locs == 3940 ' ' safe_dist == 2'
I have tried using
[bool split] = regexp(str, match, 'start', 'split') %where match = '(&&)|(||)'
but the outcome is not the expected one
bool = 36
split = [1x35 char] ' safe_dist == 2'
Can anyone help me with this? Thanks in advance
|
|
|
|