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

Online now

Members online
563
Guests online
1,206
Total visitors
1,769

Forum statistics

Threads
2,277,846
Posts
28,979,231
Members
1,229,107
Latest member
worldteens2021
Back
Top