将B站上的视频链接转化成适合网页的链接

程序源码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>

int write_clipboard(char *strText);

int main(void){

	//用户从键盘输入的字符串
	char input[195] = {0};

	//从用户输入的字符串中截取视频识别相关代码
	char middle[42] = {0};

	//定义一个总长为三段相加的空字符串
	char full[302] = {0};  

	//字符串的头部,即处理之后的链接的前部分,写死在程序中
	char *start = (char *)"<iframe src=\"//player.bilibili.com/player.html?aid=";

	//字符串的结尾,即处理之后的链接的后部分,写死在程序中
	char *end = (char *)"&page=1&high_quality=1&danmaku=0\" allowfullscreen=\"allowfullscreen\" width=\"100%\" height=\"500\" scrolling=\"no\" frameborder=\"0\" sandbox=\"allow-top-navigation allow-same-origin allow-forms allow-scripts\"></iframe>";
	
	//读取用户输入,将空格也试做字符串的内容
	scanf("%[^\n]",&input);

	//字符串的中间部分,作测试用
	//char *middle = (char *)"375588815&bvid=BV1so4y1m7U5&cid=339262048";

	//获取字符串的中间部分,放入middle中
	for(int i = 0; i<41; i++){
		middle[i] = input[51+i];
	}

	//将字符串的各部分连接起来放到full中
	strcat(full,start);
	strcat(full,middle);
	strcat(full,end);

	//将字符串输出测试
	printf("%s",full);
	
	//将处理完成的字符串写入到剪切板
	write_clipboard(full);

	//系统暂停,浏览输出结果
	system("pause");
	return 0;

}

int write_clipboard(char *strText)
{

    // 打开剪贴板   
    if (!OpenClipboard(NULL)|| !EmptyClipboard())    
    {   
        printf("打开或清空剪切板出错!\n");   
        return -1;   
    }   
    HGLOBAL hMen;   

    // 分配全局内存    
    hMen = GlobalAlloc(GMEM_MOVEABLE, ((strlen(strText)+1)*sizeof(TCHAR)));    
    if (!hMen)   
    {   
        printf("分配全局内存出错!\n");

        // 关闭剪切板    
        CloseClipboard();   
        return -1;         
    }   

    // 把数据拷贝考全局内存中   
    // 锁住内存区    
    LPSTR lpStr = (LPSTR)GlobalLock(hMen); 

    // 内存复制   
    memcpy(lpStr, strText, ((strlen(strText))*sizeof(TCHAR)));   

    // 字符结束符    
    lpStr[strlen(strText)] = (TCHAR)0;   

    // 释放锁    
    GlobalUnlock(hMen);   

    // 把内存中的数据放到剪切板上   
    SetClipboardData(CF_TEXT, hMen);   
    CloseClipboard();   
    return 0; 

}

程序运行示例

THE END
分享
二维码
海报
将B站上的视频链接转化成适合网页的链接
程序源码 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> int write_clipboard(char *str……