Clear Filters
Clear Filters

Add / before _ in a string

1 view (last 30 days)
Zeynab Mousavikhamene
Zeynab Mousavikhamene on 18 Oct 2019
Answered: Bhaskar R on 18 Oct 2019
I need to add / before any underline in strings like "Mean_Tumor_Radius_prolif" so it will be "Mean/_Tumor/_Radius/_prolif".
Any suggestion?

Accepted Answer

Bhaskar R
Bhaskar R on 18 Oct 2019
There are many ways to do this, the simplest way is by the command "strrep"
str = 'Mean_Tumor_Radius_prolif'
replaced_str = strrep(str, '_', '/_');
replaced_str =
'Mean/_Tumor/_Radius/_prolif'

More Answers (0)

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!