[Solved] SC fomatlist() separator
Posted: 11 Jun 2024 20:51
Code: Select all
$text = "1,2,3";
text formatlist($text, "f", ",", "!1|3"); //1,2,3
$text = "1|2|3";
text formatlist($text, "f", "|", "!1|3"); //2Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Code: Select all
$text = "1,2,3";
text formatlist($text, "f", ",", "!1|3"); //1,2,3
$text = "1|2|3";
text formatlist($text, "f", "|", "!1|3"); //2Code: Select all
$text = "1,2,3";
text formatlist($text, "f", ",", "!1,3"); //2