🔒 Closed String Shuffler (skips space character)

Status
Not open for further replies.

Katipunero-

Honorary Poster
Code:
void main() {
  print("ice cream".shuffled);
}

extension Shuffle on String {
  String get shuffled {
    final letters = split('')
      ..removeWhere((letter) => letter == ' ')
      ..shuffle();

    return replaceAllMapped(
      RegExp(r'[^ ]'),
      (match) =>
          Iterable.generate(match[0]!.length, (_) => letters.removeLast())
              .join(),
    );
  }
}

You do not have permission to view the full content of this post. Log in or register now.
 
Status
Not open for further replies.

About this Thread

  • 0
    Replies
  • 608
    Views
  • 1
    Participants
Last reply from:
Katipunero-

Trending Topics

Online now

Members online
374
Guests online
1,669
Total visitors
2,043

Forum statistics

Threads
2,315,347
Posts
29,182,147
Members
1,183,546
Latest member
japolosix
Back
Top