How to remove a part of string from a string. not manually.

2 views (last 30 days)

Pdus_ENGINE_PKG_ENGINE_CPC_ENGINE_COM01_Container_ST3

I need Pdus only. I want to remove remaining part which is inside braces from the above string.i dont want to remove it manually by considering the remaining part.i need it in some other way.

(_ENGINE_PKG_ENGINE_CPC_ENGINE_COM01_Container_ST3).

Answers (1)

Image Analyst
Image Analyst on 10 Oct 2017
Here's one way:
str = str(1:4); % Extract only the first 4 characters.
If that doesn't do it, then say why not.
By the way, the "above string" doesn't have braces in it.
  2 Comments
vijay chandra
vijay chandra on 11 Oct 2017
I mentioned braces below. but the total string is above one. ok thank you.
Image Analyst
Image Analyst on 11 Oct 2017
You can get rid of braces first like this
str = strrep(str, '{', '');
str = strrep(str, '}', '');
str = str(1:4); % Extract only the first 4 characters.

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!