Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,690 questions

55,449 answers

573 users

How to generate a range array of numbers and characters and special characters in Ruby

1 Answer

0 votes
arr = (0..9).to_a + ('A'..'z').to_a + ('!'..'?').to_a

puts arr.join(' ') 



# run:
# 
# 0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` 
# a b c d e f g h i j k l m n o p q r s t u v w x y z ! " # $ % & ' ( ) * + , - . / 
# 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
#

 



answered Dec 23, 2020 by avibootz

Related questions

1 answer 305 views
1 answer 214 views
1 answer 258 views
1 answer 240 views
1 answer 261 views
1 answer 245 views
1 answer 237 views
...