11 lines
238 B
Text
11 lines
238 B
Text
import ballerina/io;
|
|
import ballerina/regex;
|
|
|
|
public function main() {
|
|
string s = "Hello,How,Are,You,Today";
|
|
string[] oList = regex:split(s, ",");
|
|
foreach string i in oList {
|
|
io:print(i,".");
|
|
}
|
|
io:println();
|
|
}
|