摘要: We will learn how to work with Lists using a variety of methods made available in the dart:core library. We will explore the top methods for working w 阅读全文
posted @ 2019-09-04 15:26 Zhentiw 阅读(219) 评论(0) 推荐(0)
摘要: var str3 = '''Multi Line String'''; print( str3.splitMapJoin( RegExp(r'^', multiLine: true), // Matches the beginning of the line onMatch: (m) => '** ${m.group(0)}', // Adds asterisk to match onNonMat 阅读全文
posted @ 2019-09-04 15:18 Zhentiw 阅读(913) 评论(0) 推荐(0)