Find the 137th character in a file?
4 次查看(过去 30 天)
显示 更早的评论
Hi, I have a file in MATLAB that has a lot of text. I would like to find the 137th character in the file.
For this I tried the following code, but witout any luck. How can any character at a given numbered position in a text file? Thanks
>> C = char(137)
C =
''
采纳的回答
Walter Roberson
2024-1-16
datastruct = load('data1.mat');
T = datastruct.T;
item_of_interest = T(137);
0 个评论
更多回答(3 个)
Stephen23
2024-1-15
fnm = 'theNameOfYourFile.txt';
txt = fileread(fnm);
txt(137)
8 个评论
Stephen23
2024-1-18
@Dyuman Joshi: I agree. The only correct answer for a MAT file would be Walter Roberson's.
Hassaan
2024-1-15
编辑:Hassaan
2024-1-15
Approach 1
% Open the file in read mode
fileID = fopen('yourfile.txt', 'r');
% Check if the file was opened successfully
if fileID == -1
error('File cannot be opened.');
end
% Read the entire contents of the file into a string
fileContents = fread(fileID, '*char')';
% Close the file
fclose(fileID);
% Check if the file contains at least 137 characters
if length(fileContents) >= 137
% Extract the 137th character
charAt137 = fileContents(137);
else
error('The file does not contain 137 characters.');
end
% Display the 137th character
disp(charAt137);
Make sure to replace 'yourfile.txt' with the actual name of your text file. The fread function reads the contents of the file, and the *char argument specifies that it should read the data as characters. Then, we simply index into the fileContents to find the 137th character.
Please note that this code assumes that the text file is encoded in ASCII or UTF-8 without multi-byte characters. If the text file contains multi-byte characters (like those in UTF-16 or other encodings), you will need to account for that when reading and indexing the file.
Approach 2
% Define the filename of the text file you want to read
fileName = 'FileName.txt';
% Read the entire contents of the file into a string
txtRead = fileread(fileName);
% Find and display the character at the 137th position
charAt137 = txtRead(137);
% Display the result
disp(['Character at position 137: ', charAt137]);
---------------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
1 个评论
Shivam
2024-1-15
编辑:Shivam
2024-1-15
Hi,
I understand that you want to extract the 137th character from a .txt file.
You can refer to the following workaround to extract the 137 character from a .txt file:
file = fopen('sampleTxtFile.txt', 'r');
% Check for successfully opened file
if file == -1
error('File cannot be opened.');
end
% Move to the desired position in the file (137th character)
fseek(file, 136, 'bof'); % 'bof' means beginning of file, indices start at 0
% Read one character from the current position
ch = fread(file, 1, 'char');
fclose(file);
% Convert the character code to a character
desiredCharacter = char(ch)
I hope it helps.
Thanks
5 个评论
Shivam
2024-1-17
Hi,
Upon loading the data of 'data1.mat', 'T' obtained is a character array of size 1x5120. You can access the 137th character of T in the following way:
load data1.mat;
desiredChar = T(137)
I hope it helps.
Thanks
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Text Data Preparation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!