- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试生成给定字符串的 ASCII 艺术。
#pragma once
#include <string>
#include <vector>
#include "art.h"
std::string Art::display(std::string& text) {
std::string final_text;
final_text.reserve(text.length());
for (char letter: text) {
std::string single = letters[letter];
/* tried this */ single.erase(std::remove(single.begin(), single.end(), '\n'), single.end());
final_text += single;
}
return final_text;
}
#pragma once
#include <string>
#include <vector>
#include <map>
class Art {
public:
std::map<char, std::string> letters = {
std::make_pair('a', std::string(R"(
_
/ \
/ _ \
/ ___ \
/__/ \__\
)")),
std::make_pair('b', std::string(R"(
____
| __ )
| _ \
| |_) |
|____/
)")),
std::make_pair('c', std::string(R"(
____
/ ___|
| |
| |___
\____|
)")),
std::make_pair('d', std::string(R"(
____
| _ \
| | | |
| |_| |
|____/
)")),
std::make_pair('e', std::string(R"(
_____
| ____|
| _|
| |___
|_____|
)")),
std::make_pair('f', std::string("asdf")),
std::make_pair('g', std::string("asdf")),
std::make_pair('h', std::string(R"(
_ _
| | | |
| |_| |
| _ |
|_| |_|
)")),
std::make_pair('i', std::string("asdf")),
std::make_pair('j', std::string("asdf")),
std::make_pair('k', std::string(R"(
_ __
| |/ /
| ' /
| . \
|_|\_\
)")),
std::make_pair('l', std::string("asdf")),
std::make_pair('m', std::string("asdf")),
std::make_pair('n', std::string("asdf")),
std::make_pair('o', std::string(R"(
___
/ _ \
| | | |
| |_| |
\___/
)")),
std::make_pair('p', std::string("asdf")),
std::make_pair('q', std::string("asdf")),
std::make_pair('r', std::string(R"(
____
| _ \
| |_) |
| _ <
|_| \_\
)")),
std::make_pair('s', std::string("asdf")),
std::make_pair('t', std::string("asdf")),
std::make_pair('u', std::string("asdf")),
std::make_pair('v', std::string("asdf")),
std::make_pair('w', std::string("asdf")),
std::make_pair('x', std::string("asdf")),
std::make_pair('y', std::string(R"(
__ __
\ \ / /
\ V /
| |
|_|
)")),
std::make_pair('z', std::string("asdf"))
};
std::string display(std::string& text);
};
这是采用 str 引用,然后循环遍历每个字符并在映射中找到该字符并获取其对应的 ASCII 艺术字母,然后将其添加到最终字符串。
这就提出了一个问题。当我想打印 Art::display()
返回的字符串时,它会在新行上打印每个字符。
我试过什么?我曾尝试删除换行符,但这会把零碎的东西混在一起/分开。
我想让它做什么?我希望它从左到右打印一个单词,而不是在新行上打印每个字符。
最佳答案
我将添加一个 Letter
类来简化解析和打印字母。
例子:
#include <iomanip>
#include <iostream>
#include <map>
#include <string_view>
#include <vector>
class Letter {
public:
// The constructor takes a string_view and parses it into lines that
// it stores in a vector<string_view>
Letter(std::string_view l) : width_(0) {
auto b = l.begin();
for(auto it = b; it != l.end(); ++it) {
if(*it == '\n') {
auto w = it - b;
if(w > width_) width_ = w;
svs.emplace_back(b, w);
b = it + 1;
}
}
auto w = l.end() - b;
if(w > width_) width_ = w;
svs.emplace_back(b, w);
}
// some convenience functions
unsigned width() const { return width_; }
unsigned height() const { return svs.size(); }
// An operator to get a specific line to render from this Letter.
// It returns a string with the proper width (the max width of all the
// lines for this Letter). If `line` is out of bounds, it returns a
// blank line.
std::string operator()(unsigned line) const {
if(line >= svs.size()) return std::string(width_, ' ');
return std::string(svs[line]) + std::string(width_ - svs[line].size(), ' ');
}
// If you just want to print one letter:
friend std::ostream& operator<<(std::ostream& os, const Letter& l) {
for(auto& sv : l.svs) os << sv << '\n';
return os;
}
private:
std::vector<std::string_view> svs;
unsigned width_;
};
// A user defined literal operator to simplify creating the map:
Letter operator "" _L(const char* str, std::size_t len) {
return std::string_view{str, len};
}
//---------------------------------------------------------------
std::map<char, Letter> letters = {
{' ', " "_L }, // space
{'a',
R"( _
/ \
/ _ \
/ ___ \
/__/ \__\
)"_L},
{'b',
R"( ____
| __ )
| _ \
| |_) |
|____/
)"_L}
}; // note that each Letter ends with _L to trigger the user defined literal
// A printing function that can either be called with a specified height,
// or be made to find the appropriate height for this string.
void print(std::string_view txt, unsigned height = 0) {
if(height == 0) {
for(char ch : txt) {
try {
auto w = letters.at(ch).height();
if(w > height) height = w;
}
catch(...) {} // don't mind non-existing letters
}
}
for(unsigned i = 0; i < height; ++i) {
for(char ch : txt) {
const Letter& l = letters.at(ch);
std::cout << l(i);
}
std::cout << '\n';
}
}
int main() {
print("abab baba");
}
输出:
_ ____ _ ____ ____ _ ____ _
/ \ | __ ) / \ | __ ) | __ ) / \ | __ ) / \
/ _ \ | _ \ / _ \ | _ \ | _ \ / _ \ | _ \ / _ \
/ ___ \ | |_) | / ___ \ | |_) | | |_) | / ___ \ | |_) | / ___ \
/__/ \__\|____/ /__/ \__\|____/ |____/ /__/ \__\|____/ /__/ \__\
注意:MSVC(Visual Studio 中包含的编译器)出于某种原因在我的 string_view
上出现问题。下面是一个使用 std::string
来让 MSVC 满意的版本:
#include <iomanip>
#include <iostream>
#include <iterator>
#include <map>
#include <string>
#include <vector>
class Letter {
public:
// The constructor takes a string_view and parses it into lines that
// it stores in a vector<string_view>
Letter() = default;
Letter(const std::string& str) {
auto b = str.cbegin();
auto end = str.cend();
for(std::string::const_iterator it = b; it != end; ++it) {
if(*it == '\n') {
std::size_t w = std::distance(b, it);
if(w > width_) width_ = w;
svs.emplace_back(b, it);
b = it + 1;
}
}
std::size_t w = std::distance(b, str.cend());
if(w > width_) width_ = w;
svs.emplace_back(b, str.cend());
}
// some convenience functions
std::size_t width() const { return width_; }
std::size_t height() const { return svs.size(); }
// An operator to get a specific line to render from this Letter.
// It returns a string with the proper width (the max width of all the
// lines for this Letter). If `line` is out of bounds, it returns a
// blank line.
std::string operator()(std::size_t line) const {
if(line >= svs.size()) return std::string(width_, ' ');
return svs[line] + std::string(width_ - svs[line].size(), ' ');
}
// If you just want to print one letter:
friend std::ostream& operator<<(std::ostream& os, const Letter& l) {
for(auto& sv : l.svs) os << sv << '\n';
return os;
}
private:
std::vector<std::string> svs;
std::size_t width_ = 0;
};
// A user defined literal operator to simplify creating the map:
Letter operator "" _L(const char* str, std::size_t len) {
return std::string(str, str + len);
}
//---------------------------------------------------------------
std::map<char, Letter> letters = {
{' ', " "_L },
{'a',
R"( _
/ \
/ _ \
/ ___ \
/__/ \__\
)"_L},
{'b',
R"( ____
| __ )
| _ \
| |_) |
|____/
)"_L}
}; // note that each Letter ends with _L to trigger the user defined literal
// A printing function that can either be called with a specified height,
// or be made to find the appropriate height for this string.
void print(std::string_view txt, std::size_t height = 0) {
if(height == 0) {
for(char ch : txt) {
try {
auto w = letters.at(ch).height();
if(w > height) height = w;
}
catch(...) {} // don't mind non-existing letters
}
}
for(std::size_t i = 0; i < height; ++i) {
for(char ch : txt) {
const Letter& l = letters.at(ch);
std::cout << l(i);
}
std::cout << '\n';
}
}
int main() {
print("abab baba");
}
关于c++ - C++换行符中的ascii艺术生成器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69124538/
双引号的 ASCII 数字是多少? (") 另外,是否有指向任何地方的列表的链接? 最后,如何进入C族(尤其是C#) 最佳答案 引号的 ASCII 码是 34。 (好吧,严格来说,它不是真正的引号,而
考虑一台计算机,它有一个字节可寻址内存,根据大端方案组织成 32 位字。程序读取在键盘上输入的 ASCII 字符并将它们存储在连续的字节位置,从位置 1000 开始。在输入名称“johnson”后显示
\x20 下的大多数 ASCII 代码似乎完全过时了。他们今天有没有使用?它们是否可以被视为“可供抢夺”,还是最好避免它们? 我需要一个分隔符来将“行”分组在一起,为此目的选择其中一个肯定会很好。 来
非字母数字或标点符号的字符称为不可打印: Codes 20hex to 7Ehex, known as the printable characters 那么为什么是例如005 可表示(并由 club
在我的一次面试中,面试官问我为什么在 ASCII 表中大写字母在小写字母之前,我在 google.com 上搜索但没有找到,谁能给我答案?多谢! 最佳答案 我只是猜测,但我想这是因为最早的字符集根本没
由于编码原因可能会让您感到恐惧(我不好意思说),我需要在单个字符串中存储多个文本项。 我将使用一个字符来分隔它们。 哪个字符最适合用于此目的,即哪个字符最不可能出现在文本中?必须是可打印的,并且可能小
我的代码将一大堆文本数据传递给负责存储这些数据的遗留库。但是,它倾向于删除尾随空格。当我读回数据时,这是一个问题。由于我无法更改遗留代码,因此我考虑用一些不常见的 ASCII 字符替换所有空格。当我读
我正在检查井号 (£) 的 ASCII 值。我找到了多个答案: http://www.ascii-code.com/说 A3 = 163 是井号的 ASCII 值。 http://www.asciit
我们好像只用了'\0'(null),'\a'(bell),'\b'(backspace),'\t'(水平制表符),'\n'(line fee) ,'\r'(回车),'\v'(垂直制表符),'\e'(转
当我查看 rust ASCII operations感觉之间存在一致性问题 is_lowercase/is_uppercase: pub fn is_uppercase(&self) -> bool
我一直假设 ASCII 码的范围是 0 到 255。昨晚我不得不处理一个我认为是下划线但结果是 Chr(8230) 的字符。三个类似下划线的小点。这是在 AutoHotKey 脚本中。问题已解决,但给
也许我在使用 Google 方面做得很糟糕,但这些规范适用于 Bencoding继续引用称为“十进制 ASCII”的东西,这让我认为它与常规 ASCII 不同。有人能解释一下吗? 最佳答案 base明
我正在尝试将小字符串转换为它们各自的 ascii 十进制值。就像将字符串“Ag”转换为“065103”一样。 我尝试使用 integer_variable : Integer := Integer'V
我想使用程序或图形库将图像转换为 ASCII 艺术,但我想指定要使用的调色板(符号)。所以基本上我想要一个图像,它从某个字母 A 呈现为文本,它是完整 ASCII 表的子集,例如 A := {a,b,
是否可以使用 Graphviz 绘制 ASCII 图表? 类似的事情: digraph { this -> is this -> a a -> test } 给出了不想要的结果。 相反,我
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
如何将 Žvaigždės aukštybėj užges 或 äüöÖÜÄ 之类的字符串转换为 Zvaigzdes aukstybej uzges 或 auoOUA,分别使用 Bash? 基本上我只
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: How would you convert from ASCII to Hex by character i
我有一个成员搜索功能,您可以在其中提供部分姓名,返回的内容应该是至少具有与该输入匹配的用户名、名字或姓氏之一的所有成员。这里的问题是某些名称具有“奇怪”的字符,例如 Renée 中的 é 并且用户不想
我有文件名“abc张.xlsx”,其中包含某种非 ASCII 字符编码,我想删除所有非 ASCII 字符以将其重命名为“abc.xlsx”。 这是我尝试过的: import os import str
我是一名优秀的程序员,十分优秀!