Problem 43658. When Was That Goal Scored?
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 Solvers116
Suggested Problems
-
3425 Solvers
-
Program an exclusive OR operation with logical operators
745 Solvers
-
Project Euler: Problem 5, Smallest multiple
1641 Solvers
-
Calculate the area of a triangle between three points
3394 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
1689 Solvers
More from this Author51
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!