Hi,
I want to split multiple lines of text and assign values to multiple variables
Blank lines inside are to be reserved
The symbol that splits the row is -------------------------------
The first part is assigned to the variable s1
The second part is assigned to the variable s2
The third part assigns the value to the variable s3
Thanks in advance for any advice and help
david
Macro Macro2
Powershell Equivalent codes:
I want to split multiple lines of text and assign values to multiple variables
Blank lines inside are to be reserved
The symbol that splits the row is -------------------------------
The first part is assigned to the variable s1
The second part is assigned to the variable s2
The third part assigns the value to the variable s3
Thanks in advance for any advice and help
david
Macro Macro2
_s=
;abc
;
;abcdef
;
;
;-------------------------------
;ghi
;
;ghij
;
;
;ghijk
;-------------------------------
;lmn
;
;lmno
;
;pq
str s1 s2 s3
Powershell Equivalent codes: