We want to find out when the goals were scored in a particular soccer game. For each game, we are given a "Goal Event Data" XML string from a soccer database. Your job is to pick out the "Elapsed Time" number for each goal. Return the numbers for each goal as a column vector of double precision numbers.
This translates to finding the number between the "<elapsed>" tags.
Example
Given this input
ged = '<goal><value><elapsed>22</elapsed><subtype>header</subtype></value></goal>'
you should return the number 22.
Note that you must return the number 22 and not the string.
Feature Tip
R2016b introduces string arrays and text manipulation functions which can help. To learn more see MATLAB Characters and Strings.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers124
Suggested Problems
-
30159 Solvers
-
The Hitchhiker's Guide to MATLAB
3408 Solvers
-
Is my wife right? Now with even more wrong husband
1343 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
905 Solvers
-
Use a timetable to analyze a train timetable (Part 2)
77 Solvers
More from this Author54
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Perhaps a new problem group dealing with string arrays, character arrays, and cell arrays of character vectors can be added on Cody.
@"Peng Lui": The first Challenge Group involving strings and the like (Strings I) has been posted.