Parse Between
Query
print input = 'C:\\Program Files\\Microsoft System Center\\Server\\Microsoft.Mom.Sdk.ServiceHost.exe'
| parse input with * "s\\" Process_Host_Name "\\S" *About this query
\Example that uses the Parse operator to generate a column of data from between specific strings. Return value is "Microsoft System Center"
Explanation
The query uses the Parse operator to extract a specific string from a given input. In this case, it looks for the string "Microsoft System Center" between two specific strings. The return value is "Microsoft System Center".