Final answer:
The student's MATLAB questions involve string manipulation and analysis, including counting sentences, replacing characters, extracting substrings, changing letter case, trimming strings, and extracting numbers to create a vector.
Step-by-step explanation:
To answer the student’s question, we’ll assume that the file stringB.mat has already been loaded into the MATLAB workspace and that the variable stringB contains textual data. Below are the steps to perform the requested exercises using MATLAB built-in functions:
To count the number of sentences in stringB, which end with a period, you can use: p4a = sum(stringB == '.');
To replace all periods in stringB with backslashes, you can use: p4b = replace(stringB, '.', '\');
To extract the first two sentences from stringB, first find the indexes of periods: periodIdx = find(stringB == '.'); Then extract the sentences using: p4c = stringB(1:periodIdx(2));
To convert uppercase letters to lowercase and vice versa in p4c, use: p4d = swapcase(p4c); where swapcase can be a custom function defined as following: function str = swapcase(s); str = lower(s) + upper(s) - s; end
For breaking the string into two substrings each with one sentence, use: p4e = strtrim(p4c(1:periodIdx(1))); p4f = strtrim(p4c(periodIdx(1)+1:periodIdx(2))); The strtrim function will remove any leading and trailing whitespace.
To extract numbers, you could iteratively use strtok and isstrprop to check for digits and build the vector: p4g = []; [tok, stringB] = strtok(stringB, {' ', '.', ',','!','…'}); while ~isempty(tok); if any(isstrprop(tok, 'digit')); p4g(end+1) = str2double(tok); end; [tok, stringB] = strtok(stringB, {' ', '.', ',','!','…'}); end;