Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Split and search strings
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
First Question:
I have one string called DetailInfo
DetailInfo="C_t=3;G_B=0;E_F_li=0;ES_Fi_e=0;N_Fee=0;twixx=6";
split2 = regexp(DetailInfo, ';', 'split')
Result -> I got a 1*7 string array -> C_t=3;G_B=0;E_F_li=0;ES_Fi_e=0;N_Fee=0;twixx=6;
But i want a 1*7 string array with only the value after the = sign ->3;0;........
How does it work?
Second question:
How can i check if after I+3 random numbers like l069_ is something. For example 2. String U2_walde_fuckhfg! result=U2_walde_fuckhfg
- String: 04660_s_str_uufi_a0560_t5_fs_v22_l069_
- String: 04660_s_str_uufi_a0560_t5_fs_v22_l066_U2_walde_fuckhfg
- String: 0466550_s_str_uufi_a00_t5_fs_v22_l067_U2_walde_fuck
Thank you
2 commentaires
Johannes Fischer
le 7 Juil 2020
Using regular expressions is the way to go for these kind of problems, so you are on the right track already.
I suggest you take some time and introduce yourself into regular expressions, believe me it is a time well spent. There is an introduction by MathWorks here, but Im sure you will find many other useful introductions online (at quick glance, the MathWorks introduction is probably not suited for people who never worked with regular expressions before). When you are familiar with the basics have a look at 'capture groups', this is what you need when you want to extract information from a string.
I'd like to suggest that you use more family friendly examples next time. These might keep some people from answering your questions...
Réponses (1)
dpb
le 7 Juil 2020
There's new set of higher-level functions that will do the first...
>> str2double(extractAfter(split(DetailInfo,";"),"="))
ans =
3
0
0
0
0
6
>>
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!