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

Trending Topics

Online now

Members online
948
Guests online
2,736
Total visitors
3,684

Forum statistics

Threads
2,328,938
Posts
29,245,328
Members
1,158,149
Latest member
jpdadios
Back
Top