특정 글자 사이에 있는 글자 추출 방법은 뭐가있을까요

Hi @amucotomolrayo

Say string is stored in str then

str.split("loc date",stringsplitoptions.none)(1)

Or

str.replace("loc date","").Trim

Or

system.text.regularexpressions.regex.matches(str,"\d{8}")(0).Value

These are to be used in assign with a string variable on left side

Str is the input string

Either of this can be used

Cheers