isgursoy / qtcreator-plugin-stringmanipulation

A String Manipulation Plugin For Qt Creator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qtcreator-plugin-stringmanipulation

A String Manipulation Plugin For Qt Creator (Usefull in wine development)

Feature:

  • Search selected string in Google
  • Selected String to Char Array:
    abcd -> {'a','b','c','d',0}
    ' -> {'\'',0}
    中文 -> {0x4e2d,0x6587,0}
  • Strip Space in Selected String:
    a b c d -> abcd
  • Add Break Point:
    -> __asm__ __volatile__("int3");
  • Sort Declaration By Length:
int b;      int abc;
int abc; -> int cd;
int cd;     int a;
  • Paste Diff:
+ added      added
  old     -> old
- deleted

About

A String Manipulation Plugin For Qt Creator

License:GNU General Public License v3.0


Languages

Language:C++ 92.1%Language:CMake 6.0%Language:C 1.9%