I have this paragraph as one srting , apllied below code as suggested by
one of the member.
words = “Kid games need to be both fun and educational. Aimed at ages
pre-K through middle school, safe environment to discover their
abilities and learn new skills with interactive and fun computer
games. Our games build skills in math, logic, memory, vocabulary,
alphabet, spelling, geography, computer skills, color identification,
shape identification and other various problem solving. Our commitment
to parents, teachers, and kids, is to connect earning and skill
building with a sense of challenge, fun, and self esteem.”
line_length = 10
word_arry = words.split(" ")
text = (0…(words.length / line_length)).inject([]) {|v,num| start =
num * line_length; v << %Q{<= #{words[(start)…(start +
line_length)].join(" ")} =>}}
text.join("\n")
It cuts the string after every 10 characters into like this
<= Kid games need to be both fun and educat =><= ional. Aimed at ages
pre-K through middl =><= e school, safe environment to discover t =><=
heir
abilities and learn new skills with =><= interactive and fun computer
games. Our =><= games build skills in math, logic, memo =><= ry,
vocabulary,
alphabet, spelling, geog =><= raphy, computer skills, color identifica
=><= tion,
shape identification and other var =><= ious problem solving. Our
commitment
to =><= parents, teachers, and kids, is to conne =><= ct earning and
skill
building with a sen =><= se of challenge, fun, and self esteem. =>
What i need is the words remain uncut if it comes in the range like in
first line i want eductaional to be complete if it is not in range than
it wil show upto “and”
any kind of help highly appreciated,its a urgent need.Please provide any
way to it.
Regards & thanks
amit