// "Convert variable 'res' from String to StringBuilder (null-safe)" "true-preview" public class Main { String test(String[] strings) { String res = null; for (String s : strings) { if (s == null) continue; if(res == null) { res = s; } else { res+=s; } } return res; } }