Split a given string from the first instance of a given character - MATLAB Cody - MATLAB Central

Problem 2073. Split a given string from the first instance of a given character

Difficulty:Rate

A simple operation to split a given string into two substrings at the point where the desired character is first found. e.g.

inputString: 'we have 6 cars' split it from '6'

output: 'we have ' and '6 cars'

If the desired character is not found then first substring is same as the whole string and the second string is empty string, i.e. y2='';

Solution Stats

45.38% Correct | 54.62% Incorrect
Last Solution submitted on Feb 24, 2025

Problem Comments

Solution Comments

Show comments

Group

Project Euler II Image
Project Euler II
  • 12 Problems
  • 51 Finishers

Problem Recent Solvers109

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page