Opposite to horzcat?
    3 views (last 30 days)
  
       Show older comments
    
How do I subtract a part of a string? i.e the opposite functionality of horzcat. Say that I have a string = 'textstring' and I want to subtract string so that I get string2 = 'text'.
1 Comment
  Stephen23
      
      
 on 7 Mar 2016
				
      Edited: Stephen23
      
      
 on 7 Mar 2016
  
			Keep in mind that there is no such thing as the opposite of concatenation given just one string as an input, because by concatenating you lose information (i.e. the lengths of the parts). The only way to truly perform the opposite operation to concatenation requires that you store the part lengths as well as the concatenated string.
Answers (3)
  Walter Roberson
      
      
 on 7 Mar 2016
        Strings are row vector of char, so index the vectors.
string2 = string(1:4);
3 Comments
  Torsten
      
      
 on 7 Mar 2016
				string2 = string(1:end-characters_to_be_removed_from_the_end);
Best wishes
Torsten.
See Also
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!


