How to extract particular value

i have some data like Sector: <some data 3 to 4 lines > HQ Quarter
i want data after sector : how to take that data using if condition can any one tell me

use substring fuction…or else you can use split string activity and give the deliminator like space etc…

Provider of an escrow platform intended to make closure of home less painful for people. The company’s platform combines with revolutionary technology to bring seamless experience throughout the process which are offered online to save time, enabling real estate clients to outsource manual data entry associated with home closings in a hassle free way and avoid the delay in proceedings.
Website

Primary Industry
Real Estate Services (B2C)
Other Industries
Application Software
Information Services (B2C)
Other Services (B2C Non-Financial)
HQ Location
Seattle, WA
Last Financing Date
01-Jul-2018
Current Investors
500 Startups, Hustle Fund, Madrona Venture Labs, Mucker Capital
Business Status
Generating Revenue
Financing Status
Venture Capital-Backed
Ownership Status
Privately Held (backing)
Size Multiple
0.25x
Growth Rate
0.00%

the above is the data and i want data in between other industries and HQ locations

@vishlakhurana01 an you see the below data how to get data

@supriyad First split ur string with respect to “Other Industries” u will get array. Split Array(1) with respect to “HQ Location” u willl get required output zero th location of new array.

String Str = YourString.Split(“Other Industries”,StringSplitOptions.None)(1).Split(“HQ Location”, StringSplitOptions.None)(0)

@supriyad Try this if you know fixed lines of data in between those

System.Text.RegularExpressions.Regex.Match(extractedtext,“((.*\n){3}) Other Industries”).ToString

@Srini84 i just know Other Industries and HQ Location starting and ending words are fix so can you suggest me some regex for that