How to extract variables from Character array

11 views (last 30 days)
Is it possible to get variable names from character array of only particular range?
For example, My char array and it looks like below
en:
variable_en1 = expression; variable_en2 += expression;
variable_en3 := expression;
variable_en4++;
variable_en5--;
du:
variable_du1= expression;
variable_du2 := expression
ex:
variable_ex1=0;variable_ex2=1;
variable_ex3 = 2;
I would like to extract only variable_en1 to variable_en5 in one array and variable_ex1 to variable_ex3 in another arry.
I am attaching character array .mat file.
Could you please help me?
  4 Comments
Stephen23
Stephen23 on 19 Jun 2015
Edited: Stephen23 on 19 Jun 2015
What are "variables"? The question is not very clear.
You uploaded a .mat file containing one string. There are easy ways to extract parts of a string (particularly indexing or regular expressions), but you have not explained what part of the strings you are interested in. Please give exact examples of the desired output, and an explanation of how these should be identified (e.g. preceding or trailing characters, newline locations, character patterns, etc).
gvreddy
gvreddy on 19 Jun 2015
Edited: gvreddy on 19 Jun 2015
That one string is from state flow state. I want to find the variabels in from en:. when you load .mat file, it gives one string. There I need to find left side varibles.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 19 Jun 2015
Edited: Stephen23 on 19 Jun 2015
Thank you for editing your question and making it clearer.
You can use regexp to locate these substrings. Here are several different versions using regexpi, which I tested on your sample .mat file:
>> regexpi(transDestiLabel,'^[a-z]+(?=\s\S?=)','match','lineanchors')
ans =
'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h'
>> regexpi(transDestiLabel,'^[a-z]+(?=+|-)','match','lineanchors')
ans =
'i' 'j'
>> regexpi(transDestiLabel,'^[a-z]+(?=\s\S?=|+|-)','match','lineanchors')
ans =
'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j'
The sample file:
  12 Comments
gvreddy
gvreddy on 8 Jul 2015
Edited: Guillaume on 8 Jul 2015
Yes. This is what I expected..Thank you..
and other side, I am trying to understand regexp which you used to filter the text but I could not get well..
[C,S] = regexp(label,'(?<=\s|;|\:)\w+(?=(\s\S?)?(+|-|\:)?=)','match','start')
what I understood : (?<=\s|;|\:)\w matches string that follow : or ; and identifies word and
(?=(\s\S?)?(+|-|\:)?=) will matches white spaces and non-white spaces then followed by + or - or :
Is my understanding is correct or am I missing something?
I try to filter to get variables on one more char array which is attached to post but I am missing some variables. could you please check and let me know what is wrong?
Stephen23
Stephen23 on 8 Jul 2015
If you want to play around with regular expressions, try using my FEX submission, which lets you interactively build regular expressions and check them on a piece of text:
and keep reading this and trying examples until it all makes sense:
Lets break down the regular expression:
(?<=\s|;|\:)\w+(?=(\s\S?)?(+|-|\:)?=)
(?<=\s|;|\:) % preceded by whitespace, ; or :
\w+ % any alphanumeric word
(?= % followed by...
(\s\S?)? % maybe whitespace + non-whitepsace
(+|-|\:)? % maybe +, - or :
=) % equals sign
Hmmm... it seems like the \S? is not really required.
As I noted in an earlier comment the reasons this regular expression is so complicated is because the file format is a complete mess. If you can tidy up the file format, then identifying the variables becomes much easier.
Good luck!

Sign in to comment.

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!