All Projects → jalal246 → textics

jalal246 / textics

Licence: GPL-3.0 license
📉 JavaScript Text Statistics that counts lines, words, chars, and spaces.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to textics

regXwild
⏱ Superfast ^Advanced wildcards++? | Unique algorithms that was implemented on native unmanaged C++ but easily accessible in .NET via Conari (with caching of 0x29 opcodes +optimizations) etc.
Stars: ✭ 20 (-44.44%)
Mutual labels:  text, search-in-text
dobbi
An open-source NLP library: fast text cleaning and preprocessing
Stars: ✭ 21 (-41.67%)
Mutual labels:  string, text
septum
Context-based code search tool
Stars: ✭ 25 (-30.56%)
Mutual labels:  text, search-in-text
string-math
Evaluates a math expression from a string. Supports variables and custom operators.
Stars: ✭ 14 (-61.11%)
Mutual labels:  string, string-calculator
Owasp Mth3l3m3nt Framework
OWASP Mth3l3m3nt Framework is a penetration testing aiding tool and exploitation framework. It fosters a principle of attack the web using the web as well as pentest on the go through its responsive interface.
Stars: ✭ 139 (+286.11%)
Mutual labels:  stream, curl
indexed-string-variation
Experimental JavaScript module to generate all possible variations of strings over an alphabet using an n-ary virtual tree
Stars: ✭ 16 (-55.56%)
Mutual labels:  string, characters
Prestyler
Elegant text formatting tool in Swift 🔥
Stars: ✭ 36 (+0%)
Mutual labels:  string, text
html-comment-regex
Regular expression for matching HTML comments
Stars: ✭ 15 (-58.33%)
Mutual labels:  string, text
String To Stream
Convert a string into a stream (streams2)
Stars: ✭ 75 (+108.33%)
Mutual labels:  stream, string
Attributedstring
基于Swift插值方式优雅的构建富文本, 支持点击长按事件, 支持不同类型过滤, 支持自定义视图等.
Stars: ✭ 294 (+716.67%)
Mutual labels:  string, text
justified
Wrap, align and justify the words in a string.
Stars: ✭ 30 (-16.67%)
Mutual labels:  string, text
vue-countable
✍️ Vue binding for countable.js. Provides real-time paragraph, sentence, word, and character counting.
Stars: ✭ 25 (-30.56%)
Mutual labels:  counter, characters
Thirukkural-Tamil-Dataset
திருக்குறள் by திருவள்ளுவர்.
Stars: ✭ 44 (+22.22%)
Mutual labels:  text
performance-counters
Extremely useful library for collecting and tracking performance metrics in your .NET application
Stars: ✭ 16 (-55.56%)
Mutual labels:  counter
atacr
Analysing Capture Seq Count Data
Stars: ✭ 14 (-61.11%)
Mutual labels:  count-data
react-native-styled-text
Styled Text for React Native
Stars: ✭ 57 (+58.33%)
Mutual labels:  text
jsCast
📻 An Audio Streaming Application written in JavaScript
Stars: ✭ 23 (-36.11%)
Mutual labels:  stream
CSGO-Offset-Scanner
Java Based Cross-Platform CSGO Offset and Netvar Scanner
Stars: ✭ 28 (-22.22%)
Mutual labels:  counter
SFMediaStream
HTML5 media streamer library for playing music, video, playlist, or even live streaming microphone & camera with node server
Stars: ✭ 97 (+169.44%)
Mutual labels:  stream
socializer
Rails engine to make your projects social. Adds stream, profile, circles, groups and notifications.
Stars: ✭ 56 (+55.56%)
Mutual labels:  stream

textics

text/ics counts lines, words, chars and spaces for a given string 📃 📝

npm install textics

API

const { lines, words, chars, spaces } = textics(str);

Example

const { textics } = require("textics");

const result = textics("you got the power");

expect(result).to.deep.equal({
  lines: 1,
  words: 4,
  chars: 14,
  spaces: 3
});

Using textics with stream

Related projects

  • packageSorter - Sorting packages for monorepos production.

  • builderz - Building your project with zero config.

  • corename - Extracts package name.

  • get-info - Utility functions for projects production.

  • move-position - Moves element in given array form index-A to index-B

Tests

npm test

License

This project is licensed under the GPL-3.0 License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].