🔒 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
  • 562
    Views
  • 1
    Participants
Last reply from:
Katipunero-

Trending Topics

Online now

Members online
836
Guests online
696
Total visitors
1,532

Forum statistics

Threads
2,279,810
Posts
28,993,348
Members
1,226,096
Latest member
albasta66
Back
Top