C++

サンプルコード
public static string StripHTMLTag(string strHtml)
{
string strOutMd=strHtml;
Regex regex = ne ...

C++

C#コード
public static string HtmlToTextFunc(string htmlStr)
{
if (String.IsNullOrEmpty(htmlStr))
{

C++

方法1
#include<iostream>
using namespace std;
int fac(int n)
{
static int f=1;
f=f*n; ...

C++

サンプルコード
#include <iostream>
#include <cmath>
#define MAX 100
using namespace std;

i ...

C++

サンプルコード
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include < ...

C++

サンプルコード

#include <iostream>
using namespace std;

const int N = 40000;

void FactCal(int n) ...

C++

C#コード
using System;namespace ArrayApplication{
class MyArray
{
static void Main(string n = new int; ...

C++

参考コード
using System;
public class startnews24demo {
public static void Main() {
int sum = 0;
int; ...

C++

参考コード:
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
doubl ...

C++

下記コード:

private string GenerateCheckCode()
{
char);
chkCode += code.ToString();
}
Session = ...

C++

代码示例
byte{3,5,6,9};
StringBuilder builder = new StringBuilder(length * 2);
foreach(byte value in todd) ...

C++

C#コード:
string ZenKakuToHanKaku(string str)
{
string QJstr = str;
char b = System.Text.Encoding.Unicod ...

C++

参考ソースコード:
void pointArr(){
int arr);

int *pointer;
pointer = arr;
for (int i = 0; i<count-1; ...

C++

参考ソースコード:
void selectArr(){
int arr);

for (int i = 0; i<count-1; i++) {
for (int j = i+1; j<c ...

C++

書式
文字列A +文字列B
使用例

#include <iostream>using namespace std;int main() { string strA = "AA"; string str ...

C++

書式
変数名 +=文字列
使用例

#include <iostream>using namespace std;int main() { string strA = "test"; strA += " ...

C++

書式
対象文字列.insert(位置, 追加文字列)
使用例

#include <iostream>using namespace std;int main() { string strA = "ar ...

C++

書式
文字列A.append(文字列B)
使用例

#include <iostream>using namespace std;int main() { string strA = "arkgame" ...