Having a string call another string

Hello everyone,
I'm new to matlab and learning it right now.
I was wondering how I would make a string that would prompt the user for an input statement and would output the statment exactly as shown (Your string was: 'hi there').
Enter your string: hi there
Your string was: ‘hi there’
Here is what I have so far and i've tried multiple different ways and cant seem to figure out how to call it back.
txt = input('Enter your string: ',"s");

Answers (1)

Stephen23
Stephen23 on 17 Jun 2024
Moved: dpb on 17 Jun 2024
txt = input("Enter your string: ","s");
disp("Your string was: " + txt)

2 Comments

Zachary
Zachary on 17 Jun 2024
Moved: Stephen23 on 17 Jun 2024
Thank you so much!
@Zachary: please remember to click the accept button for answers that helped you!

Sign in to comment.

Categories

Products

Release

R2024a

Tags

Asked:

on 17 Jun 2024

Commented:

on 17 Jun 2024

Community Treasure Hunt

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

Start Hunting!